Lines Matching refs:call
581 * @param Call $call
585 function insertBefore(Call $call): Call argument
589 $this->callStack[] = $call->toCallArray();
594 array_splice($this->callStack, $offset, 0, [$call->toCallArray()]);
610 return $call;
657 * @param Call $call
661 function insertAfter(Call $call): void argument
666 array_splice($this->callStack, $offset + 1, 0, [$call->toCallArray()]);
674 $this->callStack[] = $call->toCallArray();
679 array_unshift($this->callStack, $call->toCallArray());
863 * @param Call $call
865 public function appendCallAtTheEnd(Call $call) argument
867 $this->callStack[] = $call->toCallArray();
929 * @param Call $call
931 public function deleteAllCallsAfter(Call $call) argument
933 $key = $call->getKey();
942 …LogUtility::msg("The call ($call) could not be found in the callStack. We couldn't therefore delet…
952 foreach ($calls as $call) {
953 $this->appendCallAtTheEnd($call);
1057 public function moveToCall(Call $call): ?Call argument
1059 $targetKey = $call->getKey();
1089 * @param Call $call
1092 public function deleteAllCallsBefore(Call $call) argument
1094 $key = $call->getKey();
1103 …LogUtility::msg("The call ($call) could not be found in the callStack. We couldn't therefore delet…
1137 foreach($calls as $call){
1138 $this->appendCallAtTheEnd($call);