Conditions | 3 |
Paths | 3 |
Total Lines | 10 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
25 | public static function factoryClassName($string) |
||
26 | { |
||
27 | if (JsonStringFormatter::isJsonString($string)) { |
||
28 | return JsonStringFormatter::class; |
||
29 | } elseif (XmlStringFormatter::isXmlString($string)) { |
||
30 | return XmlStringFormatter::class; |
||
31 | } else { |
||
32 | return StringFormatter::class; |
||
33 | } |
||
34 | } |
||
35 | |||
46 |