Removes a method to call after service initialization.
$this
public function removeMethodCall(string $method) : static { foreach ($this->calls as $i => $call) { if ($call[0] === $method) { unset($this->calls[$i]); } } return $this; }