ap-lib / singleton
Implementation for a singleton pattern
1.0.0
2025-02-03 03:28 UTC
Requires
- php: ^8.1
Requires (Dev)
- phpunit/phpunit: 10.5.*
README
Implementation for a singleton pattern
Installation
composer require ap-lib/singleton
Requirements
- PHP 8.1 or higher
How it works
use AP\Singleton\Singleton; class Hello { use Singleton; private string $format; public function sayHello(string $name): string { return sprintf($this->format, $name); } private function __construct() { $this->format = "Hello %s"; } } echo Hello::getInstance()->sayHello("World"); // Hello World