| Total Complexity | 2 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | class ScriptAlreadyReviewedGuard extends Guard |
||
| 17 | { |
||
| 18 | protected $exception = ScriptAlreadyReviewedException::class; |
||
| 19 | |||
| 20 | protected $script; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * ScriptAlreadyReviewedGuard constructor. |
||
| 24 | * @param $script |
||
| 25 | */ |
||
| 26 | 2 | public function __construct($script) |
|
| 27 | { |
||
| 28 | 2 | $this->script = $script; |
|
| 29 | 2 | } |
|
| 30 | |||
| 31 | 2 | public function condition(): bool |
|
| 38 | } |
||
| 39 | |||
| 42 |