Fixed wrong implementation of Singleton Pattern

This commit is contained in:
Marius Bogdan
2015-12-12 22:44:19 +01:00
parent dab22757a7
commit df060dab97
3 changed files with 37 additions and 4 deletions

View File

@@ -0,0 +1,8 @@
<?php
namespace DesignPatterns\Creational\Singleton;
class SingletonPatternViolationException extends \Exception
{
}