mezon/singleton

1.0.1 2021-11-23 09:07 UTC

This package is auto-updated.

Last update: 2024-04-23 14:29:44 UTC


README

##Intro##

This class implements basic singleton pattern.

##Usage##

Using singleton behaviour in your applications is so simple as it can be. Just extend the class Singleton, and enjoy using it!

See the code:

// including all necessary files
require_once( dirname( dirname( dirname( __FILE__ ) ) ).'/conf/conf.php' );
require_once( $MEZON_PATH.'/vendor/singleton/singleton.php' );

// creatingyour own class
class   MyClass extends Singleton
{
    // methods and their implementations
}

That's all!

You can see the Template Engine class for real usage of this pattern.