(Yaf >=1.0.0)
Yaf_Dispatcher::__construct — Yaf_Dispatcher constructor
Yaf_Dispatcher implements the singleton pattern, so the constructor is private. Use Yaf_Dispatcher::getInstance() to retrieve the dispatcher instance, which is created by Yaf_Application.
This function has no parameters.
No value is returned.
Example #1 Yaf_Dispatcher is a singleton
<?php
$app = new Yaf_Application(dirname(__FILE__) . "/conf/application.ini");
// Yaf_Dispatcher implements the singleton pattern, so its constructor is
// private. Retrieve the instance with Yaf_Dispatcher::getInstance()
// instead of calling `new`.
$dispatcher = Yaf_Dispatcher::getInstance();
var_dump($dispatcher instanceof Yaf_Dispatcher);
?>The above example will output something similar to:
bool(true)