ProductController.php 217 B

12345678910111213
  1. <?php
  2. namespace Controller;
  3. class ProductController extends \Tools\AController
  4. {
  5. public function __construct($context, $params)
  6. {
  7. parent::__construct($context, $params);
  8. throw new \Exception\Error404();
  9. }
  10. }