diff --git a/lib/Interfaces/Has_Request.php b/lib/Interfaces/Has_Request.php new file mode 100644 index 0000000..423b116 --- /dev/null +++ b/lib/Interfaces/Has_Request.php @@ -0,0 +1,13 @@ +request; + } + + public function set_request( Request $request ): static{ + $this->request = $request; + + return $this; + } + +} \ No newline at end of file