ap-lib/singleton

Implementation for a singleton pattern

1.0.0 2025-02-03 03:28 UTC

This package is auto-updated.

Last update: 2025-03-07 05:43:05 UTC


README

MIT License

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