defined',
$key,
'get' . str_replace(' ', '', ucwords(str_replace('_', ' ', $key)))
));
}
/**
* Test if a configuration property is null
*
* @see ParameterObject::__isset()
*
* @param string $key
* @return bool
*/
public function __isset($key)
{
$getter = 'get' . str_replace('_', '', $key);
return method_exists($this, $getter) && null !== $this->__get($key);
}
/**
* Set a configuration property to NULL
*
* @see ParameterObject::__unset()
*
* @param string $key
* @throws Exception\InvalidArgumentException
* @return void
*/
public function __unset($key)
{
try {
$this->__set($key, null);
} catch (Exception\BadMethodCallException $e) {
throw new Exception\InvalidArgumentException(
'The class property $' . $key . ' cannot be unset as'
. ' NULL is an invalid value for it',
0,
$e
);
}
}
}
defined',
$key,
'get' . str_replace(' ', '', ucwords(str_replace('_', ' ', $key)))
));
}
/**
* Test if a configuration property is null
*
* @see ParameterObject::__isset()
*
* @param string $key
* @return bool
*/
public function __isset($key)
{
$getter = 'get' . str_replace('_', '', $key);
return method_exists($this, $getter) && null !== $this->__get($key);
}
/**
* Set a configuration property to NULL
*
* @see ParameterObject::__unset()
*
* @param string $key
* @throws Exception\InvalidArgumentException
* @return void
*/
public function __unset($key)
{
try {
$this->__set($key, null);
} catch (Exception\BadMethodCallException $e) {
throw new Exception\InvalidArgumentException(
'The class property $' . $key . ' cannot be unset as'
. ' NULL is an invalid value for it',
0,
$e
);
}
}
}
Fatal error: Uncaught Error: Class "Laminas\Stdlib\AbstractOptions" not found in /home/metaseit/vendor/laminas/laminas-modulemanager/src/Listener/ListenerOptions.php:16
Stack trace:
#0 /home/metaseit/vendor/composer/ClassLoader.php(576): include()
#1 /home/metaseit/vendor/composer/ClassLoader.php(427): Composer\Autoload\{closure}('/home/metaseit/...')
#2 /home/metaseit/vendor/laminas/laminas-zendframework-bridge/src/Autoloader.php(107): Composer\Autoload\ClassLoader->loadClass('Laminas\\ModuleM...')
#3 /home/metaseit/vendor/laminas/laminas-mvc/src/Service/ModuleManagerFactory.php(33): Laminas\ZendFrameworkBridge\Autoloader::Laminas\ZendFrameworkBridge\{closure}('Laminas\\ModuleM...')
#4 /home/metaseit/vendor/laminas/laminas-servicemanager/src/ServiceManager.php(642): Laminas\Mvc\Service\ModuleManagerFactory->__invoke(Object(Laminas\ServiceManager\ServiceManager), 'ModuleManager', NULL)
#5 /home/metaseit/vendor/laminas/laminas-servicemanager/src/ServiceManager.php(264): Laminas\ServiceManager\ServiceManager->doCreate('ModuleManager')
#6 /home/metaseit/vendor/laminas/laminas-mvc/src/Application.php(251): Laminas\ServiceManager\ServiceManager->get('ModuleManager')
#7 /home/metaseit/public_html/popup-seite.ch/index.php(30): Laminas\Mvc\Application::init(Array)
#8 {main}
thrown in /home/metaseit/vendor/laminas/laminas-modulemanager/src/Listener/ListenerOptions.php on line 16