From 75ff09bea52bc793fd5e262eabccaa3fe4bee655 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9A=D0=BE=D0=BD=D1=81=D1=82=D0=B0=D0=BD=D1=82=D0=B8?= =?UTF-8?q?=D0=BD=D0=BE=D0=B2=20=D0=94=D0=BC=D0=B8=D1=82=D1=80=D0=B8=D0=B9?= Date: Tue, 20 Dec 2022 15:13:45 +0300 Subject: [PATCH] Declare property Request::$builder Fix https://github.com/IsraelOrtuno/pipedrive/issues/124 --- src/Http/Request.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/Http/Request.php b/src/Http/Request.php index c868f3c..886b7eb 100644 --- a/src/Http/Request.php +++ b/src/Http/Request.php @@ -22,6 +22,13 @@ class Request */ protected $client; + /** + * The Builder instance. + * + * @var Builder + */ + protected $builder; + /** * Request constructor. *