The Yaf_Application class

(Yaf >=1.0.0)

Giriş

Yaf_Application provides a bootstrapping facility for applications which provides reusable resources, common- and module-based bootstrap classes and dependency checking.

Bilginize:

Yaf_Application implements the singleton pattern, and Yaf_Application can not be serialized or unserialized which will cause problem when you try to use PHPUnit to write some test case for Yaf.

You may use @backupGlobals annotation of PHPUnit to control the backup and restore operations for global variables. thus can solve this problem.

Sınıf Sözdizimi

final class Yaf_Application {
/* Özellikler */
protected $config;
protected $dispatcher;
protected static $_app;
protected $_modules;
protected $_running;
protected $_environ;
/* Yöntemler */
public function __construct(mixed $config, string $envrion = ?)
public static function app(): mixed
public function bootstrap(Yaf_Bootstrap_Abstract $bootstrap = ?): void
public function clearLastError(): Yaf_Application
public function environ(): void
public function execute(callable $entry, string ...$args): void
public function getAppDirectory(): Yaf_Application
public function getConfig(): Yaf_Config_Abstract
public function getDispatcher(): Yaf_Dispatcher
public function getLastErrorMsg(): string
public function getLastErrorNo(): int
public function getModules(): array
public function run(): void
public function setAppDirectory(string $directory): Yaf_Application
public function __destruct()
}

Özellikler

config

dispatcher

_app

_modules

_running

_environ

İçindekiler

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top