Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Develop #26

Merged
merged 24 commits into from
Aug 24, 2014
Merged
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
little fix module:publish command
gravitano committed Aug 24, 2014

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit d0b32284c8f0ddb55430a2ab2aed024df3b54808
5 changes: 4 additions & 1 deletion src/Pingpong/Modules/Commands/ModulePublisherCommand.php
Original file line number Diff line number Diff line change
@@ -2,12 +2,15 @@

use Illuminate\Console\Command;
use Illuminate\Filesystem\Filesystem as File;
use Pingpong\Modules\Traits\ModuleCommandTrait;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Input\InputArgument;
use Pingpong\Modules\Handlers\ModulePublisherHandler;

class ModulePublisherCommand extends Command {

use ModuleCommandTrait;

/**
* The console command name.
*
@@ -41,7 +44,7 @@ public function __construct(ModulePublisherHandler $handler)
*/
public function fire()
{
return $this->handler->fire($this, $this->argument('module'));
return $this->handler->fire($this, $this->getModuleName());
}

/**