PHP Classes

File: samples/lib/the_only_one.php

Recommend this page to a friend!
  Classes of adriano ghezzi   ghz PHP Autoloader   samples/lib/the_only_one.php   Download  
File: samples/lib/the_only_one.php
Role: Example script
Content type: text/plain
Description: test class
Class: ghz PHP Autoloader
Autoload classes scanning files in directories
Author: By
Last change: changed path
Date: 5 years ago
Size: 262 bytes
 

Contents

Class file image Download
<?php
/**
 * Created by PhpStorm.
 * User: adriano
 * Date: 27/02/19
 * Time: 8.07
 */

namespace lib;


class
the_only_one
{
    public function
__construct()
    {
        echo
PHP_EOL . "***" . __CLASS__ . " instantiated" . PHP_EOL;
    }

}