AppContext
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 13
dl 0
loc 14
c 0
b 0
f 0
1
<?php
2
3
namespace evelikto\di;
4
use evelikto\di\{storage, creator, reader, resolver};
5
6
/** Default container configuration with all features enabled */
7
class AppContext extends AppContextBase
8
{
9
    use
0 ignored issues
show
introduced by
The trait evelikto\di\storage\GlobalStorage requires some properties which are not provided by evelikto\di\AppContext: $value, $scope
Loading history...
introduced by
The trait evelikto\di\storage\LocalStorage requires some properties which are not provided by evelikto\di\AppContext: $aliases, $name, $scope, $value
Loading history...
Bug introduced by
The trait evelikto\di\creator\InterfaceAliasCreator requires the property $value which is not provided by evelikto\di\AppContext.
Loading history...
introduced by
The trait evelikto\di\storage\SessionStorage requires some properties which are not provided by evelikto\di\AppContext: $value, $scope
Loading history...
10
          storage\LocalStorage
11
        , storage\SessionStorage
12
        , storage\GlobalStorage
13
        , creator\MethodCreator
14
        , creator\ClassCreator
15
        , creator\InterfaceAliasCreator
16
        , creator\InterfaceMethodCreator
17
        , reader\ConstReader
18
        , resolver\NameResolver
19
        , resolver\TypeResolver
20
        , resolver\DefaultResolver
21
    ;
22
}