@@ -37,36 +37,36 @@ trait HasTimestamps
3737 */
3838 protected User $ lastEditedBy ;
3939
40- protected function fillTimestampableProperties (): void
40+ protected function fillTimestampableAttributes (): void
4141 {
4242 $ this ->fillCreatedTime ();
4343 $ this ->fillLastEditedTime ();
4444 $ this ->fillCreatedBy ();
4545 $ this ->fillLastEditedBy ();
4646 }
4747
48- protected function fillCreatedTime (): void
48+ private function fillCreatedTime (): void
4949 {
5050 if (Arr::exists ($ this ->responseData , 'created_time ' )) {
5151 $ this ->createdTime = new Carbon ($ this ->responseData ['created_time ' ]);
5252 }
5353 }
5454
55- protected function fillLastEditedTime (): void
55+ private function fillLastEditedTime (): void
5656 {
5757 if (Arr::exists ($ this ->responseData , 'last_edited_time ' )) {
5858 $ this ->lastEditedTime = new Carbon ($ this ->responseData ['last_edited_time ' ]);
5959 }
6060 }
6161
62- protected function fillCreatedBy (): void
62+ private function fillCreatedBy (): void
6363 {
6464 if (Arr::exists ($ this ->responseData , 'created_by ' )) {
6565 $ this ->createdBy = new User ($ this ->responseData ['created_by ' ]);
6666 }
6767 }
6868
69- protected function fillLastEditedBy (): void
69+ private function fillLastEditedBy (): void
7070 {
7171 if (Arr::exists ($ this ->responseData , 'last_edited_by ' )) {
7272 $ this ->lastEditedBy = new User ($ this ->responseData ['last_edited_by ' ]);
0 commit comments