ecom
E-commerce cms
 All Data Structures Namespaces Files Functions Variables
AController.php
Go to the documentation of this file.
1 <?php
2 
3 namespace Tools;
4 
5 // TODO RestController
6 // TODO cliController
7 
11 abstract class AController
12 {
21  protected $params;
22 
30  public function __construct($context, $params)
31  {
32  $this->params = $params;
33  }
34 
38  public abstract function start();
39 }
40 
__construct($context, $params)
Definition: AController.php:30