Remove deprecated bootstrap.php fallback

Closes #1557.
This commit is contained in:
Franz Liedke 2019-07-06 02:11:09 +02:00
parent de67927ef2
commit f8061bbca1
No known key found for this signature in database
GPG Key ID: 9A0231A879B055F4

View File

@ -292,15 +292,6 @@ class Extension implements Arrayable
if (file_exists($filename)) {
return $filename;
}
// To give extension authors some time to migrate to the new extension
// format, we will also fallback to the old bootstrap.php name. Consider
// this feature deprecated.
$deprecatedFilename = "{$this->path}/bootstrap.php";
if (file_exists($deprecatedFilename)) {
return $deprecatedFilename;
}
}
/**