Gitiles
Code Review
Sign In
www.giggi.me
/
code-igniter-v3-giggi
/
dc83e04a75b95f3325d44dc972db2a2d723da4cc
/
.
/
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
;
}
}