PHP Classes

File: example/src/faz/Faz.php

Recommend this page to a friend!
  Classes of Samuel Adeshina   Plug Loader   example/src/faz/Faz.php   Download  
File: example/src/faz/Faz.php
Role: Example script
Content type: text/plain
Description: Example
Class: Plug Loader
Autoload classes based on PSR-4 recommendation
Author: By
Last change:
Date: 8 years ago
Size: 151 bytes
 

Contents

Class file image Download
<?php
   
namespace Example\Faz;
   
    class
Faz {
        private function
__construct(){ }

        public static function
alert($message){
            echo
$message;
        }
    }
?>