diff --git a/src/Feature/ConsoleBannerProviderInterface.php b/src/Feature/ConsoleBannerProviderInterface.php index 9b035e8..0a6b873 100644 --- a/src/Feature/ConsoleBannerProviderInterface.php +++ b/src/Feature/ConsoleBannerProviderInterface.php @@ -10,7 +10,7 @@ namespace Zend\ModuleManager\Feature; -use Zend\Console\AdapterInterface; +use Zend\Console\Adapter\AdapterInterface; /** * @category Zend @@ -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); diff --git a/src/Feature/ConsoleUsageProviderInterface.php b/src/Feature/ConsoleUsageProviderInterface.php index 30bcffa..8d1bb08 100644 --- a/src/Feature/ConsoleUsageProviderInterface.php +++ b/src/Feature/ConsoleUsageProviderInterface.php @@ -10,7 +10,7 @@ namespace Zend\ModuleManager\Feature; -use Zend\Console\AdapterInterface; +use Zend\Console\Adapter\AdapterInterface; /** * @category Zend @@ -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. @@ -37,7 +37,7 @@ interface ConsoleUsageProviderInterface * ... * ) * - * @param \Zend\Console\AdapterInterface $console + * @param AdapterInterface $console * @return array|string|null */ public function getConsoleUsage(AdapterInterface $console);