Skip to content
This repository has been archived by the owner on Jan 29, 2020. It is now read-only.

Commit

Permalink
[zendframework/zendframework#2096] Update classes referencing Console
Browse files Browse the repository at this point in the history
- ensure they refer to interfaces correctly
  • Loading branch information
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/Feature/ConsoleBannerProviderInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

namespace Zend\ModuleManager\Feature;

use Zend\Console\AdapterInterface;
use Zend\Console\Adapter\AdapterInterface;

/**
* @category Zend
Expand All @@ -24,10 +24,10 @@ interface ConsoleBannerProviderInterface
* The banner is shown in the console window, when the user supplies invalid command-line parameters or invokes
* the application with no parameters.
*
* The method is called with active Zend\Console\AdapterInterface that can be used to directly access Console and send
* The method is called with active Zend\Console\Adapter\AdapterInterface that can be used to directly access Console and send
* output.
*
* @param \Zend\Console\AdapterInterface $console
* @param AdapterInterface $console
* @return string|null
*/
public function getConsoleBanner(AdapterInterface $console);
Expand Down
6 changes: 3 additions & 3 deletions src/Feature/ConsoleUsageProviderInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

namespace Zend\ModuleManager\Feature;

use Zend\Console\AdapterInterface;
use Zend\Console\Adapter\AdapterInterface;

/**
* @category Zend
Expand All @@ -21,7 +21,7 @@ interface ConsoleUsageProviderInterface
{
/**
* Returns an array or a string containing usage information for this module's Console commands.
* The method is called with active Zend\Console\AdapterInterface that can be used to directly access
* The method is called with active Zend\Console\Adapter\AdapterInterface that can be used to directly access
* Console and send output.
*
* If the result is a string it will be shown directly in the console window.
Expand All @@ -37,7 +37,7 @@ interface ConsoleUsageProviderInterface
* ...
* )
*
* @param \Zend\Console\AdapterInterface $console
* @param AdapterInterface $console
* @return array|string|null
*/
public function getConsoleUsage(AdapterInterface $console);
Expand Down

0 comments on commit 1946426

Please sign in to comment.