lithium\test\Report::__construct PHP Метод

__construct() публичный Метод

Constructor.
public __construct ( array $config = [] ) : void
$config array Options array for the test run. Valid options are: - `'group'`: The test group with items to be run. - `'filters'`: An array of filters that the test output should be run through. - `'format'`: The format of the template to use, defaults to `'txt'`. - `'reporter'`: The reporter to use.
Результат void
    public function __construct(array $config = array())
    {
        $defaults = array('title' => null, 'group' => null, 'filters' => array(), 'format' => 'txt', 'reporter' => null);
        parent::__construct($config + $defaults);
    }