Fix namespacing / package name

This commit is contained in:
Barry vd. Heuvel
2013-03-10 10:28:10 +01:00
parent 6909c6131e
commit 7c46501145
4 changed files with 10 additions and 10 deletions
@@ -1,4 +1,4 @@
<?php namespace Barryvdh\IdeHelper;
<?php namespace Barryvdh\LaravelIdeHelper;
use Illuminate\Console\Command;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Input\InputArgument;
@@ -30,7 +30,7 @@ class GeneratorCommand extends Command {
{
$filename = $this->argument('filename');
$aliases = \Config::get('ide-helper::aliases');
$aliases = \Config::get('laravel-ide-helper::aliases');
$content = $this->parseDocBlocks($aliases);
$written = \File::put($filename, $content);
@@ -51,7 +51,7 @@ class GeneratorCommand extends Command {
protected function getArguments()
{
return array(
array('filename', InputArgument::OPTIONAL, 'The path to the helper file', \Config::get('ide-helper::filename')),
array('filename', InputArgument::OPTIONAL, 'The path to the helper file', \Config::get('laravel-ide-helper::filename')),
);
}
@@ -1,4 +1,4 @@
<?php namespace Barryvdh\IdeHelper;
<?php namespace Barryvdh\LaravelIdeHelper;
use Illuminate\Support\ServiceProvider;
@@ -18,7 +18,7 @@ class IdeHelperServiceProvider extends ServiceProvider {
*/
public function boot()
{
$this->package('barryvdh/ide-helper');
$this->package('barryvdh/laravel-ide-helper');
}
/**