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 
8 abstract class AController
9 {
18  protected $params;
19 
27  public function __construct($context, $params)
28  {
29  $this->params = $params;
30  }
31 
35  public abstract function start();
36 }
37 
__construct($context, $params)
Definition: AController.php:27