14 lines
225 B
PHP
14 lines
225 B
PHP
<?php
|
|
|
|
namespace lib\Controllers;
|
|
|
|
use lib\Core\Controller as Core;
|
|
|
|
class CommonController extends Core
|
|
{
|
|
protected function __construct(array $params = [])
|
|
{
|
|
parent::__construct($params);
|
|
} //
|
|
} //Class
|