PHP Classes

File: Config/Queries/ClientDB/GET/SearchCategory.php

Recommend this page to a friend!
  Classes of Ramesh Narayan Jangid   PHP Microservices Framework   Config/Queries/ClientDB/GET/SearchCategory.php   Download  
File: Config/Queries/ClientDB/GET/SearchCategory.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: PHP Microservices Framework
Setup microservices apps with configuration arrays
Author: By
Last change: Refactor
Date: 11 days ago
Size: 501 bytes
 

Contents

Class file image Download
<?php
namespace Microservices\Config\Queries\ClientDB\GET;

//return represents root for hierarchyData
use Microservices\App\Constants;

return [
   
'query' => "SELECT * FROM `category` WHERE `name` like CONCAT ('%', :name, '%');",
   
'__CONFIG__' => [// [{payload/uriParams}, key/index, {Constants::$REQUIRED}]
       
['payload', 'name', Constants::$REQUIRED],
    ],
   
'__WHERE__' => [
       
'name' => ['payload', 'name']
    ],
   
'mode' => 'multipleRowFormat',//Multiple rows returned.
];