Phrozn\Runner\CommandLine\Callback\Up::execute PHP Method

execute() public method

Executes the callback action
public execute ( ) : string
return string
    public function execute()
    {
        try {
            $this->updateProject();
        } catch (\Exception $e) {
            $this->out(self::STATUS_FAIL . $e->getMessage());
            $this->out($this->getFooter());
        }
    }