Completed
Push — master ( eeeacf...af5244 )
by
unknown
15:28
created

BeforeStylesheetsRenderingEvent   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 4
c 1
b 0
f 0
dl 0
loc 7
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
1
<?php
2
declare(strict_types = 1);
3
4
namespace TYPO3\CMS\Core\Page\Event;
5
6
/*
7
 * This file is part of the TYPO3 CMS project.
8
 *
9
 * It is free software; you can redistribute it and/or modify it under
10
 * the terms of the GNU General Public License, either version 2
11
 * of the License, or any later version.
12
 *
13
 * For the full copyright and license information, please read the
14
 * LICENSE.txt file that was distributed with this source code.
15
 *
16
 * The TYPO3 project - inspiring people to share!
17
 */
18
19
use TYPO3\CMS\Core\Page\AssetCollector;
20
21
/**
22
 * This event is fired once before \TYPO3\CMS\Core\Page\AssetRenderer::render[Inline]Stylesheets renders the output.
23
 */
24
final class BeforeStylesheetsRenderingEvent extends AbstractBeforeAssetRenderingEvent
25
{
26
    public function __construct(AssetCollector $assetCollector, bool $isInline, bool $priority)
27
    {
28
        $this->assetCollector = $assetCollector;
29
        $this->inline = $isInline;
30
        $this->priority = $priority;
31
    }
32
}
33