/var/www/vhosts/nabawater/vendor/codeception/base/src/Codeception/Subscriber
Edit: /var/www/vhosts/nabawater/vendor/codeception/base/src/Codeception/Subscriber/Bootstrap.php (869B)
'loadBootstrap',
];
public function loadBootstrap(SuiteEvent $e)
{
$settings = $e->getSettings();
if (!isset($settings['bootstrap'])) {
return;
}
if (!$settings['bootstrap']) {
return;
}
$bootstrap = $settings['path'] . $settings['bootstrap'];
if (!is_file($bootstrap)) {
throw new ConfigurationException("Bootstrap file $bootstrap can't be loaded");
}
require_once $bootstrap;
}
}