summaryrefslogtreecommitdiffstats
path: root/tests/mocks/core/lang.php
blob: 1b99aedb3487d5a71075ff05ed94d32396939dfb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php

class Mock_Core_Lang extends CI_Lang {

	function line($line = '')
	{
		return FALSE;
	}

	function load($langfile, $idiom = '', $return = false, $add_suffix = true, $alt_path = '')
	{
		return;
	}

}