14 lines
326 B
PHP
14 lines
326 B
PHP
<?php
|
|
|
|
namespace App\Controllers\View;
|
|
|
|
/**
|
|
* Compatibility wrapper for older references.
|
|
*
|
|
* School-year lifecycle behavior lives in App\Controllers\Administrator,
|
|
* where status changes are exposed only as dedicated actions.
|
|
*/
|
|
class SchoolYearController extends \App\Controllers\Administrator\SchoolYearController
|
|
{
|
|
}
|