| Total Complexity | 1 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | class PsrPrinterFactory |
||
| 11 | { |
||
| 12 | public static function create(): Printer |
||
| 13 | { |
||
| 14 | $version = InstalledVersions::getVersion('nette/php-generator'); |
||
| 15 | |||
| 16 | return version_compare($version, '4.0', '>=') |
||
|
|
|||
| 17 | ? self::compat4() |
||
| 18 | : self::compat3(); |
||
| 19 | } |
||
| 20 | |||
| 21 | protected static function compat3(): Printer |
||
| 29 | }; |
||
| 30 | } |
||
| 31 | |||
| 32 | protected static function compat4(): Printer |
||
| 40 | }; |
||
| 41 | } |
||
| 42 | } |
||
| 43 |