times() public method

Indicates the number of times this expectation should occur
public times ( integer $limit = null ) : self
$limit integer
return self
 /**
  * @return $this
  */
 public function times($limit = null)
 {
     $this->expectation->times($limit);
     return $this;
 }