Skip to content

Commit

Permalink
Fix phpdoc
Browse files Browse the repository at this point in the history
- Add missing `@inherit` doc blocs
- Fix relative FQCN
  • Loading branch information
theofidry committed Sep 19, 2016
1 parent 3111751 commit a9e63de
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/BinCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@

class BinCommand extends BaseCommand
{
/**
* {@inheritDoc}
*/
protected function configure()
{
$this
Expand All @@ -25,6 +28,9 @@ protected function configure()
;
}

/**
* {@inheritDoc}
*/
public function execute(InputInterface $input, OutputInterface $output)
{
$this->resetComposers();
Expand Down Expand Up @@ -105,4 +111,4 @@ private function createConfig()

return $config;
}
}
}
3 changes: 3 additions & 0 deletions src/CommandProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@

class CommandProvider implements CommandProviderCapability
{
/**
* {@inheritDoc}
*/
public function getCommands()
{
return array(new BinCommand);
Expand Down
6 changes: 6 additions & 0 deletions src/Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,16 @@

class Plugin implements PluginInterface, Capable
{
/**
* {@inheritDoc}
*/
public function activate(Composer $composer, IOInterface $io)
{
}

/**
* {@inheritDoc}
*/
public function getCapabilities()
{
return array(
Expand Down

0 comments on commit a9e63de

Please sign in to comment.