making changes to routing.

This commit is contained in:
Taylor Otwell
2012-02-09 23:35:08 -06:00
parent 38da9f47b9
commit 8737dde682
4 changed files with 201 additions and 45 deletions

View File

@@ -401,11 +401,11 @@ class Bundle {
* Get the information for a given bundle.
*
* @param string $bundle
* @return object
* @return array
*/
public static function get($bundle)
{
return (object) array_get(static::$bundles, $bundle);
return array_get(static::$bundles, $bundle);
}
/**