Total Complexity | 2 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
33 | class ViewFactory |
||
34 | { |
||
35 | |||
36 | /** |
||
37 | * Instance of QtView |
||
38 | * @var QtView|null |
||
39 | */ |
||
40 | private static $instance = null; |
||
41 | |||
42 | /** |
||
43 | * QtView instance |
||
44 | * @return QtView |
||
45 | * @throws DebugBarException |
||
46 | * @throws DiException |
||
47 | * @throws BaseException |
||
48 | * @throws ConfigException |
||
49 | * @throws ReflectionException |
||
50 | */ |
||
51 | public static function get(): QtView |
||
65 |