CodeSleeve / asset-pipeline

This Laravel 4 package provides a very simple and easy to use asset pipeline. It was heavily inspired by the Rails asset pipeline. We make use of the wonderful Assetic package to help with pre-compliation!
http://www.codesleeve.com
MIT License
489 stars 53 forks source link

Move route creation to boot() method. #197

Closed franzliedke closed 9 years ago

franzliedke commented 10 years ago

This had the potential to cause complications in combination with other packages.

Resolving objects from the container (as using a facade always does) should always be done in boot(), so that other packages have the chance to either use Container::extend() or Container::resolving() on these objects.

Also did some whitespace cleanup.