1 | <?php |
||
2 | |||
3 | namespace AntiPatterns\Singleton; |
||
4 | |||
5 | require_once "vendor/autoload.php"; |
||
6 | |||
7 | print (!Singleton::getInstance() instanceof Singleton) ?: "Singleton \n"; |
||
0 ignored issues
–
show
introduced
by
![]() |
|||
8 |