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

Commit

Permalink
Browse files Browse the repository at this point in the history
- Fixed whitespace issues
- Moved interfaces into their subnamespaces
- Do not use phpdoc-style docblocks as in-body comments
  • Loading branch information
weierophinney committed Aug 2, 2012
1 parent d759352 commit 4ec1292
Show file tree
Hide file tree
Showing 19 changed files with 559 additions and 624 deletions.
289 changes: 135 additions & 154 deletions src/Adapter/AbstractAdapter.php

Large diffs are not rendered by default.

10 changes: 6 additions & 4 deletions src/AdapterInterface.php → src/Adapter/AdapterInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@
* @package Zend_Console
*/

namespace Zend\Console;
namespace Zend\Console\Adapter;

use Zend\Console\Charset\CharsetInterface;

/**
* @category Zend
Expand Down Expand Up @@ -238,19 +240,19 @@ public function resetColor();
/**
* Set Console charset to use.
*
* @param \Zend\Console\CharsetInterface $charset
* @param CharsetInterface $charset
*/
public function setCharset(CharsetInterface $charset);

/**
* Get charset currently in use by this adapter.
*
* @return \Zend\Console\CharsetInterface $charset
* @return CharsetInterface $charset
*/
public function getCharset();

/**
* @return \Zend\Console\CharsetInterface
* @return CharsetInterface
*/
public function getDefaultCharset();

Expand Down
Loading

0 comments on commit 4ec1292

Please sign in to comment.