Skip to content

Commit b3911f5

Browse files
authored
Merge pull request #5 from Micro-PHP/v1.2-release
v1.2 release
2 parents 3361833 + ab54540 commit b3911f5

File tree

4 files changed

+4
-7
lines changed

4 files changed

+4
-7
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "micro/kernel",
33
"type": "library",
44
"description": "",
5-
"version": "1.1",
5+
"version": "1.2",
66
"license": "MIT",
77
"autoload": {
88
"psr-4": {

src/Kernel.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
namespace Micro\Framework\Kernel;
44

55
use Micro\Component\DependencyInjection\Container;
6-
use Micro\Framework\Kernel\Plugin\ApplicationPluginInterface;
76
use Micro\Framework\Kernel\Plugin\PluginBootLoaderInterface;
87

98
class Kernel implements KernelInterface
@@ -19,7 +18,7 @@ class Kernel implements KernelInterface
1918
private bool $isTerminated;
2019

2120
/**
22-
* @var ApplicationPluginInterface[]
21+
* @var object[]
2322
*/
2423
private array $plugins;
2524

src/KernelBuilder.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,13 @@
55
use Micro\Component\DependencyInjection\Container;
66
use Micro\Framework\Kernel\Container\ApplicationContainerFactoryInterface;
77
use Micro\Framework\Kernel\Container\Impl\ApplicationContainerFactory;
8-
use Micro\Framework\Kernel\Plugin\ApplicationPluginInterface;
98
use Micro\Framework\Kernel\Plugin\PluginBootLoaderInterface;
109
use Psr\Container\ContainerInterface;
1110

1211
class KernelBuilder
1312
{
1413
/**
15-
* @var iterable<ApplicationPluginInterface>
14+
* @var iterable<object>
1615
*/
1716
private iterable $pluginCollection;
1817

src/KernelInterface.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
namespace Micro\Framework\Kernel;
44

55
use Micro\Component\DependencyInjection\Container;
6-
use Micro\Framework\Kernel\Plugin\ApplicationPluginInterface;
76

87
interface KernelInterface
98
{
@@ -31,7 +30,7 @@ public function terminate(): void;
3130
/**
3231
* @param string|null $interfaceInherited
3332
*
34-
* @return iterable<ApplicationPluginInterface>
33+
* @return iterable<object>
3534
*/
3635
public function plugins(string $interfaceInherited = null): iterable;
3736
}

0 commit comments

Comments
 (0)