for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
require_once __DIR__ . "/../vendor/autoload.php";
class Sample1
{
use \ByJG\DesignPattern\Singleton;
public $property;
private function __construct()
$this->property = 10;
}