From b6f525b3206f6dfba3b69e084bb114437be9f1ce Mon Sep 17 00:00:00 2001 From: Mike Date: Wed, 27 Dec 2017 17:26:16 -0500 Subject: [PATCH] Use Illuminate\Support\Carbon instead of Carbon\Carbon in config/ide-helper.php --- config/ide-helper.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config/ide-helper.php b/config/ide-helper.php index 48a06db..38013a2 100644 --- a/config/ide-helper.php +++ b/config/ide-helper.php @@ -153,13 +153,13 @@ return array( | | For example, normally you would see this: | - | * @property \Carbon\Carbon $created_at - | * @property \Carbon\Carbon $updated_at + | * @property \Illuminate\Support\Carbon $created_at + | * @property \Illuminate\Support\Carbon $updated_at | | With this enabled, the properties will be this: | - | * @property \Carbon\Carbon $createdAt - | * @property \Carbon\Carbon $updatedAt + | * @property \Illuminate\Support\Carbon $createdAt + | * @property \Illuminate\Support\Carbon $updatedAt | | Note, it is currently an all-or-nothing option. |