| Conditions | 1 |
| Paths | 1 |
| Total Lines | 20 |
| Code Lines | 10 |
| Lines | 20 |
| Ratio | 100 % |
| Changes | 9 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 18 | View Code Duplication | public function __construct(){ |
|
| 19 | # Config |
||
| 20 | self::$config = (new Config)->get(); |
||
| 21 | # Application |
||
| 22 | self::$app = new Application; |
||
| 23 | # View |
||
| 24 | self::$view = new View; |
||
| 25 | # Js |
||
| 26 | self::$js = new Js; |
||
| 27 | # Css |
||
| 28 | self::$css = new Css; |
||
| 29 | # Title |
||
| 30 | self::$title = new Title; |
||
| 31 | # Desctiption |
||
| 32 | self::$description = new Description; |
||
| 33 | # Keywords |
||
| 34 | self::$keywords = new Keywords; |
||
| 35 | # Uri |
||
| 36 | self::$uri = new Uri; |
||
| 37 | } |
||
| 38 | |||
| 52 |
This check marks private properties in classes that are never used. Those properties can be removed.