Commit 733392f7 authored by Phill Sparks's avatar Phill Sparks

Really default location to bundle name.

parent 161796e9
...@@ -33,7 +33,7 @@ class Bundle { ...@@ -33,7 +33,7 @@ class Bundle {
*/ */
public static function register($bundle, $config = array()) public static function register($bundle, $config = array())
{ {
$defaults = array('location' => $bundle, 'handles' => null, 'auto' => false); $defaults = array('handles' => null, 'auto' => false);
// If the given config is actually a string, we will assume it is a location // If the given config is actually a string, we will assume it is a location
// and convert it to an array so that the developer may conveniently add // and convert it to an array so that the developer may conveniently add
...@@ -45,7 +45,7 @@ class Bundle { ...@@ -45,7 +45,7 @@ class Bundle {
if ( ! isset($config['location'])) if ( ! isset($config['location']))
{ {
throw new \Exception("Location not set for bundle [$bundle]"); $config['location'] = $bundle;
} }
// We will trim the trailing slash from the location and add it back so // We will trim the trailing slash from the location and add it back so
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment