find() публичный статический Метод

Finds a logged call.
public static find ( object $message, integer $index, $times ) : array | false
$message object The message method name.
$index integer Start index.
Результат array | false Return founded log call.
Пример #1
0
 /**
  * Resolves the matching.
  *
  * @return boolean Returns `true` if successfully resolved, `false` otherwise.
  */
 public function resolve()
 {
     $startIndex = $this->_ordered ? Calls::lastFindIndex() : 0;
     $report = Calls::find($this->_message, $startIndex, $this->times());
     $this->_report = $report;
     $this->_buildDescription($startIndex);
     return $report['success'];
 }