PHP Classes

File: app/Utils/Global.php

Recommend this page to a friend!
  Classes of Ujah Chigozie peter   Luminova Framework   app/Utils/Global.php   Download  
File: app/Utils/Global.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: Luminova Framework
PHP Luminova framework: simple, powerful MVC/HMVC.
Author: By
Last change:
Date: 1 month ago
Size: 413 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;
    }
}
*/