Completed
Push — master ( 3c1969...5b5792 )
by Schlaefer
03:16 queued 10s
created

Plugin   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

Changes 0
Metric Value
dl 0
loc 12
rs 10
c 0
b 0
f 0
wmc 1
lcom 0
cbo 2

1 Method

Rating   Name   Duplication   Size   Complexity  
A bootstrap() 0 6 1
1
<?php
2
3
declare(strict_types = 1);
4
5
/**
6
 * Saito - The Threaded Web Forum
7
 *
8
 * @copyright Copyright (c) the Saito Project Developers
9
 * @link https://github.com/Schlaefer/Saito
10
 * @license http://opensource.org/licenses/MIT
11
 */
12
13
namespace Admin;
14
15
use Cake\Core\BasePlugin;
16
use Cake\Core\PluginApplicationInterface;
17
18
class Plugin extends BasePlugin
19
{
20
    /**
21
     * {@inheritdoc}
22
     */
23
    public function bootstrap(PluginApplicationInterface $app)
24
    {
25
        parent::bootstrap($app);
26
27
        $app->addPlugin('BootstrapUI');
28
    }
29
}
30