Completed
Push — master ( 7ca602...c87e8e )
by
unknown
14:05
created

AddJavaScriptModulesEvent   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 21
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 6
c 1
b 0
f 0
dl 0
loc 21
rs 10
wmc 3

2 Methods

Rating   Name   Duplication   Size   Complexity  
A addModule() 0 6 2
A getModules() 0 3 1
1
<?php
2
3
declare(strict_types=1);
4
5
/*
6
 * This file is part of the TYPO3 CMS project.
7
 *
8
 * It is free software; you can redistribute it and/or modify it under
9
 * the terms of the GNU General Public License, either version 2
10
 * of the License, or any later version.
11
 *
12
 * For the full copyright and license information, please read the
13
 * LICENSE.txt file that was distributed with this source code.
14
 *
15
 * The TYPO3 project - inspiring people to share!
16
 */
17
18
namespace TYPO3\CMS\Setup\Event;
19
20
/**
21
 * Collects additional JavaScript modules to be loaded in SetupModuleController.
22
 */
23
final class AddJavaScriptModulesEvent
24
{
25
    /**
26
     * @var string[]
27
     */
28
    private $modules = [];
29
30
    public function addModule(string $moduleName): void
31
    {
32
        if (in_array($moduleName, $this->modules, true)) {
33
            return;
34
        }
35
        $this->modules[] = $moduleName;
36
    }
37
38
    /**
39
     * @return string[]
40
     */
41
    public function getModules(): array
42
    {
43
        return $this->modules;
44
    }
45
}
46