You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
408 B
PHP
16 lines
408 B
PHP
<?php
|
|
|
|
namespace App\Controllers;
|
|
|
|
/**
|
|
* This is the base controller for your Leaf MVC Project.
|
|
* You can initialize packages or define methods here to use
|
|
* them across all your other controllers which extend this one.
|
|
*/
|
|
class Controller extends \Leaf\Controller
|
|
{
|
|
// You can define methods here that would be used
|
|
// throughout your controller classes
|
|
// public function someMethod() {}
|
|
}
|