@@ -23,7 +23,7 @@ class UserModel extends Model
23
23
24
24
// ...
25
25
26
- public function initialize()
26
+ protected function initialize()
27
27
{
28
28
$this->initRelations();
29
29
}
@@ -56,7 +56,7 @@ class UserModel extends Model
56
56
57
57
// ...
58
58
59
- public function initialize()
59
+ protected function initialize()
60
60
{
61
61
$this->initRelations();
62
62
}
@@ -89,7 +89,7 @@ class PostModel extends Model
89
89
90
90
// ...
91
91
92
- public function initialize()
92
+ protected function initialize()
93
93
{
94
94
$this->initRelations();
95
95
}
@@ -181,7 +181,7 @@ class UserModel extends Model
181
181
182
182
// ...
183
183
184
- public function initialize()
184
+ protected function initialize()
185
185
{
186
186
$this->initRelations();
187
187
}
@@ -231,7 +231,7 @@ class CountryModel extends Model
231
231
232
232
// ...
233
233
234
- public function initialize()
234
+ protected function initialize()
235
235
{
236
236
$this->initRelations();
237
237
}
@@ -273,7 +273,7 @@ class StudentModel extends Model
273
273
274
274
// ...
275
275
276
- public function initialize()
276
+ protected function initialize()
277
277
{
278
278
$this->initRelations();
279
279
}
@@ -291,7 +291,7 @@ class CourseModel extends Model
291
291
292
292
// ...
293
293
294
- public function initialize()
294
+ protected function initialize()
295
295
{
296
296
$this->initRelations();
297
297
}
0 commit comments