fix init check

This commit is contained in:
Jean-Christian Paul Denis 2023-03-19 21:53:29 +01:00
parent f5d57cf0ee
commit f863b80465
Signed by: JcDenis
GPG Key ID: 1B5B8C5B90B6C951

View File

@ -21,14 +21,14 @@ class Prepend extends dcNsProcess
{
public static function init(): bool
{
self::$init = true;
static::$init = true;
return self::$init;
return static::$init;
}
public static function process(): bool
{
if (!self::$init) {
if (!static::$init) {
return false;
}