1 <?php
2
3 namespace Controller;
4
5 use Alo\Controller\AbstractController;
6
7 /**
8 * A sample controller within a subdirectory
9 *
10 * @author Art <a.molcanovas@gmail.com>
11 */
12 class Cart extends AbstractController {
13
14 /**
15 * An example of a controller within a subdirectory
16 *
17 * @author Art <a.molcanovas@gmail.com>
18 */
19 function checkout() {
20 echo 'checking out!';
21 }
22 }
23