Use Illuminate\Support\Carbon instead of Carbon\Carbon in config/ide-helper.php

This commit is contained in:
Mike
2017-12-27 17:26:16 -05:00
committed by GitHub
parent d65f1cedcd
commit b6f525b320
+4 -4
View File
@@ -153,13 +153,13 @@ return array(
| |
| For example, normally you would see this: | For example, normally you would see this:
| |
| * @property \Carbon\Carbon $created_at | * @property \Illuminate\Support\Carbon $created_at
| * @property \Carbon\Carbon $updated_at | * @property \Illuminate\Support\Carbon $updated_at
| |
| With this enabled, the properties will be this: | With this enabled, the properties will be this:
| |
| * @property \Carbon\Carbon $createdAt | * @property \Illuminate\Support\Carbon $createdAt
| * @property \Carbon\Carbon $updatedAt | * @property \Illuminate\Support\Carbon $updatedAt
| |
| Note, it is currently an all-or-nothing option. | Note, it is currently an all-or-nothing option.
| |