marks12/tsvlib

Useful classes and function library

Installs: 8

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/marks12/tsvlib

0.0.3 2017-09-12 02:18 UTC

This package is not auto-updated.

Last update: 2025-10-02 03:09:47 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 
{
          
}