PHP Classes

File: samples/myPckg/Core/classOne.php

Recommend this page to a friend!
  Classes of adriano ghezzi   ghz PHP Autoloader   samples/myPckg/Core/classOne.php   Download  
File: samples/myPckg/Core/classOne.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:
Date: 5 years ago
Size: 248 bytes
 

Contents

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

namespace myPckg\Core;


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

}