Issues (1)

src/HttpPackPlugin.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
18
/**
19
 * @author Stanislau Komar <[email protected]>
20
 */
21
readonly class HttpPackPlugin implements PluginDependedInterface
0 ignored issues
show
A parse error occurred: Syntax error, unexpected T_READONLY on line 21 at column 0
Loading history...
22
{
23 1
    public function getDependedPlugins(): iterable
24
    {
25 1
        return [
26 1
            HttpCorePlugin::class,
27 1
            HttpLoggerPlugin::class,
28 1
            HttpExceptionResponsePlugin::class,
29 1
            HttpExceptionResponseDevPlugin::class,
30 1
            HttpBootPlugin::class,
31 1
            HttpRouterCodePlugin::class,
32 1
            HttpMiddlewarePlugin::class,
33 1
        ];
34
    }
35
}
36