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

Plugin   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Importance

Changes 2
Bugs 0 Features 0
Metric Value
eloc 2
c 2
b 0
f 0
dl 0
loc 11
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A bootstrap() 0 3 1
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