Skip to content

Commit

Permalink
fixed CS
Browse files Browse the repository at this point in the history
  • Loading branch information
fabpot committed May 15, 2012
1 parent 5bd6489 commit 4703fe2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Tests/Iterator/FilecontentFilterIteratorTest.php
Expand Up @@ -64,12 +64,14 @@ public function getFilename()
public function isFile()
{
$name = parent::current();

return preg_match('/file/', $name);
}

public function isDir()
{
$name = parent::current();

return preg_match('/directory/', $name);
}

Expand All @@ -81,6 +83,7 @@ public function getRealpath()
public function isReadable()
{
$name = parent::current();

return preg_match('/r\+/', $name);
}

Expand Down

0 comments on commit 4703fe2

Please sign in to comment.