Merge pull request #245 from paulboco/develop

Change argument to $publisher->publish() from $bundle to $bundle['name'].
This commit is contained in:
Taylor Otwell 2012-01-21 08:43:33 -08:00
commit 8e5c736392
1 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@ public function install($bundles)
IoC::resolve($provider)->install($bundle);
$publisher->publish($bundle);
$publisher->publish($bundle['name']);
}
}
@ -72,7 +72,7 @@ public function publish($bundles)
foreach ($bundles as $bundle)
{
$publisher->publish($bundle);
$publisher->publish($bundle['name']);
}
}