Fix class methods staticity/return value

This commit is contained in:
Hypolite Petovan 2017-12-17 15:29:16 -05:00
parent 916236ce2f
commit 4b5894817e
3 changed files with 5 additions and 7 deletions

View file

@ -312,10 +312,8 @@ class App {
*
* @return string
*/
public static function get_basepath() {
if (isset($this)) {
$basepath = $this->basepath;
}
public function get_basepath() {
$basepath = $this->basepath;
if (! $basepath) {
$basepath = Config::get('system', 'basepath');