Example #1
0
 /**
  * Instruct this spy to return the second argument when called
  *
  * Alias for `and_return( \Spies\Spy::passed_arg( 1 ) )`
  *
  * @return Spy This Spy
  */
 public function and_return_second_argument()
 {
     return $this->and_return(Spy::passed_arg(1));
 }