The Yaf_Application class

Introduction

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

Note:

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.

Class synopsis

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

Properties

config

dispatcher

_app

_modules

_running

_environ

Table of Contents