PHP Classes

File: app/Utils/Global.php

Recommend this page to a friend!
  Classes of Ujah Chigozie peter   Luminova REST API Example   app/Utils/Global.php   Download  
File: app/Utils/Global.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: Luminova REST API Example
Implements an example of a REST API
Author: By
Last change:
Date: 17 days ago
Size: 420 bytes
 

Contents

Class file image Download
<?php
declare(strict_types=1);
/**
 * This goal file allows you to define your own custom functions
 * or overwrite core procedural functions to replace them with your own.
 * This file is loaded during the bootstrap process and is called during the framework's execution.
 */

//Example
//if (!function_exists('myFunction')) {
// function myFunction(int $x, int $y): int
// {
// return $x + $y;
// }
//}