File tree Expand file tree Collapse file tree 4 files changed +4
-7
lines changed Expand file tree Collapse file tree 4 files changed +4
-7
lines changed Original file line number Diff line number Diff line change 2
2
"name" : " micro/kernel" ,
3
3
"type" : " library" ,
4
4
"description" : " " ,
5
- "version" : " 1.1 " ,
5
+ "version" : " 1.2 " ,
6
6
"license" : " MIT" ,
7
7
"autoload" : {
8
8
"psr-4" : {
Original file line number Diff line number Diff line change 3
3
namespace Micro \Framework \Kernel ;
4
4
5
5
use Micro \Component \DependencyInjection \Container ;
6
- use Micro \Framework \Kernel \Plugin \ApplicationPluginInterface ;
7
6
use Micro \Framework \Kernel \Plugin \PluginBootLoaderInterface ;
8
7
9
8
class Kernel implements KernelInterface
@@ -19,7 +18,7 @@ class Kernel implements KernelInterface
19
18
private bool $ isTerminated ;
20
19
21
20
/**
22
- * @var ApplicationPluginInterface []
21
+ * @var object []
23
22
*/
24
23
private array $ plugins ;
25
24
Original file line number Diff line number Diff line change 5
5
use Micro \Component \DependencyInjection \Container ;
6
6
use Micro \Framework \Kernel \Container \ApplicationContainerFactoryInterface ;
7
7
use Micro \Framework \Kernel \Container \Impl \ApplicationContainerFactory ;
8
- use Micro \Framework \Kernel \Plugin \ApplicationPluginInterface ;
9
8
use Micro \Framework \Kernel \Plugin \PluginBootLoaderInterface ;
10
9
use Psr \Container \ContainerInterface ;
11
10
12
11
class KernelBuilder
13
12
{
14
13
/**
15
- * @var iterable<ApplicationPluginInterface >
14
+ * @var iterable<object >
16
15
*/
17
16
private iterable $ pluginCollection ;
18
17
Original file line number Diff line number Diff line change 3
3
namespace Micro \Framework \Kernel ;
4
4
5
5
use Micro \Component \DependencyInjection \Container ;
6
- use Micro \Framework \Kernel \Plugin \ApplicationPluginInterface ;
7
6
8
7
interface KernelInterface
9
8
{
@@ -31,7 +30,7 @@ public function terminate(): void;
31
30
/**
32
31
* @param string|null $interfaceInherited
33
32
*
34
- * @return iterable<ApplicationPluginInterface >
33
+ * @return iterable<object >
35
34
*/
36
35
public function plugins (string $ interfaceInherited = null ): iterable ;
37
36
}
You can’t perform that action at this time.
0 commit comments