for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Vertex\Controller;
use Vertex\Model\ExampleModel;
use Vertex\Core\Controller;
use Vertex\Core\View;
class ExampleController extends Controller
{
public function index()
return View::render('examples.homepage', [
'title' => 'Vertex',
'tagline' => 'Build Something Amazing'
]);
}