turkevich/php-base-singleton

There is no license information available for the latest version (dev-master) of this package.

PHP Base Singleton

dev-master 2015-07-11 11:41 UTC

This package is not auto-updated.

Last update: 2024-04-17 08:09:19 UTC


README

Example class

<?php
use ctur\base\Singleton;

class Service extends Singleton {}

Use:

var_dump(Service::factory(['a' => 1, 'b' => 2]));die;

Result:

object(Service)[57]
  public 'a' => int 1
  public 'b' => int 2

Enjoy, guys!