<?php 
 
/** 
 * Test routes 
 * 
 * @package     Service 
 * @subpackage  ServiceUnitTest 
 * @author      Dodonov A.A. 
 * @version     v.1.0 (2019/08/17) 
 * @copyright   Copyright (c) 2019, aeon.org 
 */ 
return [ 
    [ 
        'route' => '/test/', 
        'callback' => 'test', 
        'method' => 'GET', 
    ], 
]; 
 
 |