From b96253adc6fed9d80ef5cc3c93756be333d62ba9 Mon Sep 17 00:00:00 2001 From: Trey Foster Date: Mon, 20 Jan 2020 13:58:15 -0600 Subject: [PATCH] set default to null --- src/Sheets.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Sheets.php b/src/Sheets.php index f5659c2..fe15a69 100644 --- a/src/Sheets.php +++ b/src/Sheets.php @@ -7,7 +7,7 @@ class Sheets protected $client; - public function __construct(Client $client) + public function __construct(Client $client = null) { $this->client = $client; }