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