You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Before ejecuting the load method it would check if that variable is set and if the class was loaded before, in which case it won't do anything, something simple like.
if ($this->loadOnce && isset(self::$loaded[static::className()])) {
return;
}
self::$loaded[static::className()] = true;
The text was updated successfully, but these errors were encountered:
Before ejecuting the load method it would check if that variable is set and if the class was loaded before, in which case it won't do anything, something simple like.
The text was updated successfully, but these errors were encountered: