| Total Complexity | 3 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 21 | abstract class AbstractBeforeAssetRenderingEvent |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * @var AssetCollector |
||
| 25 | */ |
||
| 26 | protected $assetCollector; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @var bool |
||
| 30 | */ |
||
| 31 | protected $inline; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @var bool |
||
| 35 | */ |
||
| 36 | protected $priority; |
||
| 37 | |||
| 38 | public function getAssetCollector(): AssetCollector |
||
| 39 | { |
||
| 40 | return $this->assetCollector; |
||
| 41 | } |
||
| 42 | |||
| 43 | public function isInline(): bool |
||
| 44 | { |
||
| 45 | return $this->inline; |
||
| 46 | } |
||
| 47 | |||
| 48 | public function isPriority(): bool |
||
| 51 | } |
||
| 52 | } |
||
| 53 |