mageekguy\atoum\script::run PHP Method

run() public method

public run ( array $arguments = [] )
$arguments array
    public function run(array $arguments = array())
    {
        $this->adapter->ini_set('log_errors_max_len', 0);
        $this->adapter->ini_set('log_errors', 'Off');
        $this->adapter->ini_set('display_errors', 'stderr');
        $this->doRun = true;
        if ($this->parseArguments($arguments)->doRun === true) {
            $this->doRun();
        }
        return $this;
    }

Usage Example

Ejemplo n.º 1
0
 public function run(array $arguments = array())
 {
     parent::run($arguments);
     if ($this->tagVersion === true) {
         $this->engine->tagVersion();
     }
     return $this;
 }
All Usage Examples Of mageekguy\atoum\script::run