johnwatkins0/wp-singleton

此包最新版本(1.0.0)没有可用的许可信息。

WordPress项目中使用的单例特质

1.0.0 2019-01-13 22:42 UTC

This package is auto-updated.

Last update: 2024-09-11 14:38:20 UTC


README

WordPress项目中使用的单例特质

示例

use JohnWatkins0\WPSingleton\Singleton;

class My_Class {
    use Singleton;

    protected function init() {
        // Do stuff when the object is first created.
    }
}

My_Class::get_instance(); // Retrieve an instance.
My_Class::get_instance(); // Same instance as above.
new My_Class(); // Error.