diff --git a/src/Testing/Factory.php b/src/Testing/Factory.php index 9e0c8bae..c8fc4573 100644 --- a/src/Testing/Factory.php +++ b/src/Testing/Factory.php @@ -237,4 +237,14 @@ public function offsetUnset($offset) { unset($this->definitions[$offset]); } + + /** + * Temporary fix to prevent Fatal on Laravel 5.3.17 + * + * @return $this + */ + public function state() + { + return $this; + } }