Total Complexity | 2 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
24 | class ForwardsMall |
||
25 | { |
||
26 | /** |
||
27 | * @var \EasyWeChat\Kernel\ServiceContainer |
||
28 | */ |
||
29 | protected $app; |
||
30 | |||
31 | /** |
||
32 | * @param \EasyWeChat\Kernel\ServiceContainer $app |
||
33 | */ |
||
34 | public function __construct($app) |
||
35 | { |
||
36 | $this->app = $app; |
||
37 | } |
||
38 | |||
39 | /** |
||
40 | * @param string $property |
||
41 | * |
||
42 | * @return mixed |
||
43 | */ |
||
44 | public function __get($property) |
||
47 | } |
||
48 | } |
||
49 |