Warning:
In PHP 7, calling non-static methods statically is deprecated, and will generate an E_DEPRECATED warning.
Support for calling non-static methods statically may be removed in the future.
I run in PHP 7 this:
public static function loadStandards() {
return true;
}
Or this:
static public function loadStandards() {
return true;
}
And is working fine no E_DEPRECATED warning from PHP.
So.. Is deprecated? or not?
namespace App\Http\Controllers\Tools;
use App\Http\Controllers\Central;
class ShopTool extends Central
{
public static $loaded = [];
public static function loadStandards()
{
return true;
}
}