Bob\Task::execute PHP Method

execute() public method

# Returns nothing.
public execute ( )
    function execute()
    {
        foreach ($this->actions as $action) {
            call_user_func($action, $this);
        }
    }