Passed
Pull Request — main (#2)
by Dante
01:29
created

Plugin::bootstrap()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 1
dl 0
loc 3
rs 10
1
<?php
2
declare(strict_types=1);
3
4
namespace BEdita\Mail;
5
6
use Cake\Core\BasePlugin;
7
use Cake\Core\PluginApplicationInterface;
8
9
/**
10
 * Plugin for BEdita\Mail
11
 *
12
 * @codeCoverageIgnore
13
 */
14
class Plugin extends BasePlugin
15
{
16
    /**
17
     * Load all the plugin configuration and bootstrap logic.
18
     *
19
     * @param \Cake\Core\PluginApplicationInterface $app The host application
20
     * @return void
21
     */
22
    public function bootstrap(PluginApplicationInterface $app): void
23
    {
24
        parent::bootstrap($app);
25
    }
26
}
27