PlaydarResolver::__construct PHP Method

__construct() public method

1-100. higher means preferable.
public __construct ( )
    public function __construct()
    {
        set_error_handler(array($this, 'errorHandler'), E_ALL);
    }

Usage Example

示例#1
0
 function __construct($conf)
 {
     parent::__construct();
     foreach ($conf as $key => $value) {
         $this->{$key} = $value;
     }
 }
All Usage Examples Of PlaydarResolver::__construct