final code cleanup

This commit is contained in:
Taylor Otwell
2012-02-16 13:59:48 -06:00
parent f41717dcb1
commit 49d9666958
3 changed files with 33 additions and 22 deletions

View File

@@ -81,9 +81,9 @@ class Bundle {
throw new \Exception("Bundle [$bundle] has not been installed.");
}
// Each bundle may have a "start" script which is responsible for preparing
// the bundle for use by the application. The start script may register any
// classes the bundle uses with the auto-loader, etc.
// Each bundle may have a start script which is responsible for preparing
// the bundle for use by the application. The start script may register
// any classes the bundle uses with the auto-loader, etc.
if (file_exists($path = static::path($bundle).'start'.EXT))
{
require $path;