marks12/tsvlib

Useful classes and function library

0.0.3 2017-09-12 02:18 UTC

This package is not auto-updated.

Last update: 2024-05-01 19:56:17 UTC


README

Library of classes and functions

Singleton

Simplest pattern. We can doing anything and be sure Singleton is exactly only one instance in program;

<?php

declare(strict_type=1);
   
namespace MyNamespace;
   
use \TsvLib\Singleton;
   
class MyClass extends Singleton 
{
          
}