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
if (!file_exists(\Codeception\Configuration::projectDir() . $this->config['app_path'])) {
229
-
thrownewModuleRequireException(__CLASS__, "Can't load Kernel from $path.\nDirectory does not exists. Use `app_path` parameter to provide valid application path");
229
+
thrownewModuleRequireException(
230
+
__CLASS__,
231
+
"Can't load Kernel from $path.\n"
232
+
. "Directory does not exists. Use `app_path` parameter to provide valid application path"
thrownewModuleRequireException(__CLASS__, "AppKernel was not found at $path. Specify directory where Kernel class for your application is located with `app_path` parameter.");
240
+
thrownewModuleRequireException(
241
+
__CLASS__,
242
+
"AppKernel was not found at $path. "
243
+
. "Specify directory where Kernel class for your application is located with `app_path` parameter."
244
+
);
237
245
}
238
246
239
247
$file = current($results);
@@ -331,8 +339,18 @@ public function seeCurrentRouteIs($routeName, array $params = [])
331
339
if (!$router->getRouteCollection()->get($routeName)) {
332
340
$this->fail(sprintf('Route with name "%s" does not exists.', $routeName));
0 commit comments