Eloquent\Phony\Mock\Handle\AbstractHandle::stopRecording PHP Метод

stopRecording() публичный Метод

Stop recording calls.
public stopRecording ( )
    public function stopRecording()
    {
        foreach (get_object_vars($this->state->stubs) as $stub) {
            $stub->stopRecording();
        }
        $this->state->isRecording = false;
        return $this;
    }