Yaf_Loader::__construct

(Yaf >=1.0.0)

Yaf_Loader::__constructThe constructor is private

Description

private function Yaf_Loader::__construct()

Constructs a new loader. The constructor is private; Yaf_Loader is a singleton. Use Yaf_Loader::getInstance() to obtain the instance.

Parameters

This function has no parameters.

Return Values

No value is returned.

Examples

Example #1 Obtaining the Yaf_Loader singleton

<?php
$app = new Yaf_Application(__DIR__ . "/conf/application.ini");

/* the constructor is private; use getInstance() instead */
$loader = Yaf_Loader::getInstance();
var_dump($loader instanceof Yaf_Loader);

/* instantiating directly raises an Error */
try {
    $loader = new Yaf_Loader();
} catch (Error $e) {
    echo $e->getMessage(), PHP_EOL;
}
?>

The above example will output something similar to:

bool(true)
Call to private Yaf_Loader::__construct() from global scope

See Also

add a note

User Contributed Notes

There are no user contributed notes for this page.