for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Bavix\Iterator\Traits;
trait Countable
{
/**
* @return int
*/
public function count()
return count($this->data);
}