Completed
Push — master ( 2b6e28...3d0129 )
by
unknown
10:26
created

installAdditionalConfiguration()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 3

Duplication

Lines 0
Ratio 0 %
Metric Value
dl 0
loc 4
rs 10
cc 1
eloc 3
nc 1
nop 0
1
<?php
2
namespace DCNGmbH\MooxCore\Hooks;
3
4
use DCNGmbH\MooxCore\Service\UpdateService;
5
use TYPO3\CMS\Core\SingletonInterface;
6
/**
7
 * InstallSignalSlot
8
 */
9
class InstallSignalSlot implements SingletonInterface {
10
    /**
11
     * Install AddionalConfiguration
12
     */
13
    public function installAdditionalConfiguration() {
14
        $updateService = new UpdateService();
15
        $updateService->main();
16
    }
17
}