| Total Complexity | 4 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | class StrictPublicUrlListener |
||
| 19 | { |
||
| 20 | protected $isStrict = false; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * StrictPublicUrlListener constructor |
||
| 24 | * |
||
| 25 | * @param bool $strict |
||
| 26 | */ |
||
| 27 | public function __construct($strict = false) |
||
| 28 | { |
||
| 29 | $this->isStrict = $strict; |
||
| 30 | } |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @{inheritDoc} |
||
| 34 | */ |
||
| 35 | public function loadClassMetadata(LoadClassMetadataEventArgs $args) |
||
| 46 | } |
||
| 47 | } |
||
| 49 |