Alex Bilbie | 0c88690 | 2012-08-29 23:23:22 +0100 | [diff] [blame] | 1 | <?php |
| 2 | |
| 3 | class Mock_Core_Lang extends CI_Lang { |
| 4 | |
Andrey Andreev | 5fd3ae8 | 2012-10-24 14:55:35 +0300 | [diff] [blame] | 5 | public function line($line = '') |
Alex Bilbie | 0c88690 | 2012-08-29 23:23:22 +0100 | [diff] [blame] | 6 | { |
| 7 | return FALSE; |
| 8 | } |
| 9 | |
Andrey Andreev | 5fd3ae8 | 2012-10-24 14:55:35 +0300 | [diff] [blame] | 10 | public function load($langfile, $idiom = '', $return = FALSE, $add_suffix = TRUE, $alt_path = '') |
Alex Bilbie | 0c88690 | 2012-08-29 23:23:22 +0100 | [diff] [blame] | 11 | { |
| 12 | return; |
| 13 | } |
| 14 | |
| 15 | } |