| Total Complexity | 4 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 5 | class Container |
||
| 6 | { |
||
| 7 | |||
| 8 | /** |
||
| 9 | * @var Muzzle[] |
||
| 10 | */ |
||
| 11 | protected static $container = []; |
||
| 12 | |||
| 13 | public static function push(Muzzle $muzzle) : void |
||
| 14 | { |
||
| 15 | |||
| 16 | static::$container[] = $muzzle; |
||
| 17 | } |
||
| 18 | |||
| 19 | public static function makeAssertions() : void |
||
| 26 | } |
||
| 27 | } |
||
| 28 | |||
| 29 | public static function flush() : void |
||
| 35 |