size() public method

Get current selected item size by using php function count.
public size ( ) : integer
return integer size
Exemplo n.º 1
0
 public function assertCollectionSize($size, BaseCollection $collection, $message = NULL)
 {
     $this->assertEquals($size, $collection->size(), $message ?: "Colletion size should match");
 }