Conditions | 4 |
Paths | 4 |
Total Lines | 12 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
48 | public function auto() |
||
49 | { |
||
50 | if ($this->source == $this->destination) { |
||
51 | return $this->string; |
||
52 | } elseif (($iconv = $this->iconv()) !== false) { |
||
53 | return $iconv; |
||
54 | } elseif (($mbstring = $this->mbstring()) !== false) { |
||
55 | return $mbstring; |
||
56 | } |
||
57 | $this->fallback(); |
||
58 | return false; |
||
59 | } |
||
60 | |||
113 |