summaryrefslogtreecommitdiffstats
path: root/tests/mocks/core/lang.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/mocks/core/lang.php')
-rw-r--r--tests/mocks/core/lang.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/mocks/core/lang.php b/tests/mocks/core/lang.php
new file mode 100644
index 000000000..27ea3faba
--- /dev/null
+++ b/tests/mocks/core/lang.php
@@ -0,0 +1,15 @@
+<?php
+
+class Mock_Core_Lang extends CI_Lang {
+
+ public function line($line = '')
+ {
+ return FALSE;
+ }
+
+ public function load($langfile, $idiom = '', $return = FALSE, $add_suffix = TRUE, $alt_path = '')
+ {
+ return;
+ }
+
+} \ No newline at end of file