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

Plugin   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A bootstrap() 0 4 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
use Override;
9
10
/**
11
 * Plugin for BEdita\Mail
12
 *
13
 * @codeCoverageIgnore
14
 */
15
class Plugin extends BasePlugin
16
{
17
    /**
18
     * {@inheritDoc}
19
     */
20
    #[Override]
21
    public function bootstrap(PluginApplicationInterface $app): void
22
    {
23
        parent::bootstrap($app);
24
    }
25
}
26