Issues (2)

src/HttpBootPlugin.php (1 issue)

Labels
Severity
1
<?php
2
3
declare(strict_types=1);
4
5
/*
6
 *  This file is part of the Micro framework package.
7
 *
8
 *  (c) Stanislau Komar <[email protected]>
9
 *
10
 *  For the full copyright and license information, please view the LICENSE
11
 *  file that was distributed with this source code.
12
 */
13
14
namespace Micro\Plugin\Http;
15
16
use Micro\Framework\Kernel\Plugin\PluginDependedInterface;
17
use Micro\Plugin\EventEmitter\EventEmitterPlugin;
18
19
/**
20
 * @author Stanislau Komar <[email protected]>
21
 */
22
readonly class HttpBootPlugin implements PluginDependedInterface
0 ignored issues
show
A parse error occurred: Syntax error, unexpected T_READONLY on line 22 at column 0
Loading history...
23
{
24 1
    public function getDependedPlugins(): iterable
25
    {
26 1
        return [
27 1
            EventEmitterPlugin::class,
28 1
            HttpCorePlugin::class,
29 1
        ];
30
    }
31
}
32