Gitiles
Code Review
Sign In
www.giggi.me
/
code-igniter-v3-giggi
/
1712f1191f0027b61ca06dae7be303ea1b52f867
/
.
/
tests
/
mocks
/
core
/
lang.php
blob: 27ea3faba725108c1900d15cf45c7ffbafc274c8 [
file
] [
log
] [
blame
]
<?
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
;
}
}