Skip to content
This repository has been archived by the owner on May 8, 2024. It is now read-only.

Commit

Permalink
Merge branch 'typo/zendframework#6215-console-adapter-typo'
Browse files Browse the repository at this point in the history
  • Loading branch information
Ocramius committed May 2, 2014
2 parents a64f716 + f18545f commit 75b6362
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions library/Zend/Mvc/Controller/AbstractConsoleController.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

namespace Zend\Mvc\Controller;

use Zend\Console\Adapter\AdapterInterface as ConsoleAdaper;
use Zend\Console\Adapter\AdapterInterface as ConsoleAdapter;
use Zend\Console\Request as ConsoleRequest;
use Zend\Mvc\Exception\InvalidArgumentException;
use Zend\Stdlib\RequestInterface;
Expand All @@ -18,23 +18,23 @@
class AbstractConsoleController extends AbstractActionController
{
/**
* @var ConsoleAdaper
* @var ConsoleAdapter
*/
protected $console;

/**
* @param ConsoleAdaper $console
* @param ConsoleAdapter $console
* @return self
*/
public function setConsole(ConsoleAdaper $console)
public function setConsole(ConsoleAdapter $console)
{
$this->console = $console;

return $this;
}

/**
* @return ConsoleAdaper
* @return ConsoleAdapter
*/
public function getConsole()
{
Expand Down

0 comments on commit 75b6362

Please sign in to comment.