Skip to content

Commit

Permalink
Fix namespace.
Browse files Browse the repository at this point in the history
  • Loading branch information
ADmad committed Oct 16, 2014
1 parent c9ba7d0 commit 749b7f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Datasource/ResultSetDecorator.php
Expand Up @@ -35,7 +35,7 @@ class ResultSetDecorator extends Collection implements ResultSetInterface {
* @return int
*/
public function count() {
if ($this->getInnerIterator() instanceof Countable) {
if ($this->getInnerIterator() instanceof \Countable) {
return $this->getInnerIterator()->count();
}

Expand Down

0 comments on commit 749b7f6

Please sign in to comment.