AppStateESS/homestead

View on GitHub
class/Command/ShowFrontPageCommand.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Homestead\Command;

use \Homestead\FrontPageView;

class ShowFrontPageCommand extends Command {

    public function getRequestVars(){
        return array('action'=>'GetFrontPage');
    }

    public function execute(CommandContext $context)
    {
        $view = new FrontPageView();

        $context->setContent($view->show());
    }
}