16 lines
339 B
PHP
16 lines
339 B
PHP
<?php
|
|
/**
|
|
* @copyright 2012-2013 City of Bloomington, Indiana
|
|
* @license http://www.gnu.org/licenses/agpl.txt GNU/AGPL, see LICENSE.txt
|
|
* @author Cliff Ingham <inghamn@bloomington.in.gov>
|
|
*/
|
|
namespace Application\Controllers;
|
|
use Blossom\Classes\Controller;
|
|
|
|
class IndexController extends Controller
|
|
{
|
|
public function index()
|
|
{
|
|
}
|
|
}
|