izzum\command\Composite::_execute PHP Method

_execute() protected method

this method will call all commands added to this class in order of addition
protected _execute ( )
    protected function _execute()
    {
        foreach ($this->commands as $command) {
            $command->execute();
        }
    }