PHP Classes

File: src/Etc/custom-routes.php

Recommend this page to a friend!
  Packages of Adrian M   upMVC   src/Etc/custom-routes.php   Download  
File: src/Etc/custom-routes.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: upMVC
Pure PHP web development without other frameworks
Author: By
Last change:
Date: 2 months ago
Size: 257 bytes
 

Contents

Class file image Download
<?php

return [
    [
       
'path' => '/custom',
       
'controller' => 'Test\\Controller',
       
'method' => 'display'
   
],
    [
       
'path' => '/customb',
       
'controller' => 'Admin\\Controller',
       
'method' => 'display'
   
]
];