fixate/pw-mvc-boilerplate

View on GitHub
controllers/HomeController.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
/**
 * Home Controller.
 *
 * Fields and functions specific to the home template.
 */
class HomeController extends ApplicationController
{
  public function index()
  {
    return $this->render(
      // available as $foo in home.html.php
      // [
      //   'foo' => 'bar',
      // ]
    );
  }
}