Skip to content

Instantly share code, notes, and snippets.

/**
* User: Semen Kamenetskiy
* Date: 05.09.13
*/
!function () {
'use strict';
/**
/**
* User: Semen Kamenetskiy
* Date: 30.08.13
*/
!function () {
'use strict';
/**
@skamenetskiy
skamenetskiy / gist:5202393
Last active December 15, 2015 04:29
PHP Singleton sample
<?php
class Singleton
{
/** @var Singleton $_instance */
private static $_instance = null;
/**
* Returns a single instance of Singleton