PHP Classes

File: Config/Routes/Common/GlobalDB/GETroutes.php

Recommend this page to a friend!
  Classes of Ramesh Narayan Jangid   PHP Microservices Framework   Config/Routes/Common/GlobalDB/GETroutes.php   Download  
File: Config/Routes/Common/GlobalDB/GETroutes.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: PHP Microservices Framework
Setup microservices apps with configuration arrays
Author: By
Last change: Refactoring reflection of not zero
Date: 2 days ago
Size: 609 bytes
 

Contents

Class file image Download
<?php
namespace Microservices\Config\Routes\Common\Global;

use
Microservices\App\Constants;

return [
   
'groups' => [
       
'__file__' => Constants::$DOC_ROOT . '/Config/Queries/GlobalDB/GET/groups.php',
       
'{group_id:int|!0}' => [
           
'__file__' => Constants::$DOC_ROOT . '/Config/Queries/GlobalDB/GET/groups.php',
        ],
    ],
   
'clients' => [
       
'__file__' => Constants::$DOC_ROOT . '/Config/Queries/GlobalDB/GET/clients.php',
       
'{client_id:int|!0}' => [
           
'__file__' => Constants::$DOC_ROOT . '/Config/Queries/GlobalDB/GET/clients.php',
        ],
    ]
];