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

Plugin::bootstrap()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 1
dl 0
loc 6
rs 10
c 0
b 0
f 0
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