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

Commit

Permalink
Merge pull request zendframework/zendframework#5072 from samsonasik/f…
Browse files Browse the repository at this point in the history
…ix/psr

PSR-2 : add space before and after between (if and foreach) and parenthesis
  • Loading branch information
weierophinney committed Sep 4, 2013
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/TestAssets/ConsoleAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class ConsoleAdapter extends AbstractAdapter
*/
public function readLine($maxLength = 2048)
{
if($this->autoRewind) {
if ($this->autoRewind) {
rewind($this->stream);
}
$line = stream_get_line($this->stream, $maxLength, PHP_EOL);
Expand All @@ -47,7 +47,7 @@ public function readLine($maxLength = 2048)
*/
public function readChar($mask = null)
{
if($this->autoRewind) {
if ($this->autoRewind) {
rewind($this->stream);
}
do {
Expand Down

0 comments on commit 6fb31bb

Please sign in to comment.