Skip to content

Commit 66cbd6f

Browse files
authored
Fix count() Warnings during bin/zf create
issue #15
1 parent 2bceb8c commit 66cbd6f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/Zend/Tool/Project/Profile/Resource/Container.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ public function valid()
383383
*/
384384
public function hasChildren()
385385
{
386-
return (count($this->_subResources > 0)) ? true : false;
386+
return (count($this->_subResources) > 0) ? true : false;
387387
}
388388

389389
/**

0 commit comments

Comments
 (0)