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 
23  protected $context;
24 
32  public function __construct($context, $params)
33  {
34  $this->params = $params;
35  $this->context = $context;
36  }
37 
41  public abstract function start();
42 }
43 
__construct($context, $params)
Definition: AController.php:32