Complex classes like Model often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use Model, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
44 | abstract class Model implements ArrayAccess |
||
45 | { |
||
46 | const DEFAULT_ID_NAME = 'id'; |
||
47 | |||
48 | ///////////////////////////// |
||
49 | // Model visible variables |
||
50 | ///////////////////////////// |
||
51 | |||
52 | /** |
||
53 | * List of model ID property names. |
||
54 | * |
||
55 | * @var array |
||
56 | */ |
||
57 | protected static $ids = [self::DEFAULT_ID_NAME]; |
||
58 | |||
59 | /** |
||
60 | * Property definitions expressed as a key-value map with |
||
61 | * property names as the keys. |
||
62 | * i.e. ['enabled' => ['type' => Type::BOOLEAN]]. |
||
63 | * |
||
64 | * @var array |
||
65 | */ |
||
66 | protected static $properties = []; |
||
67 | |||
68 | /** |
||
69 | * @var array |
||
70 | */ |
||
71 | protected $_values = []; |
||
72 | |||
73 | /** |
||
74 | * @var array |
||
75 | */ |
||
76 | protected $_unsaved = []; |
||
77 | |||
78 | /** |
||
79 | * @var bool |
||
80 | */ |
||
81 | protected $_persisted = false; |
||
82 | |||
83 | /** |
||
84 | * @var array |
||
85 | */ |
||
86 | protected $_relationships = []; |
||
87 | |||
88 | /** |
||
89 | * @var AbstractRelation[] |
||
90 | */ |
||
91 | private $relationships = []; |
||
92 | |||
93 | ///////////////////////////// |
||
94 | // Base model variables |
||
95 | ///////////////////////////// |
||
96 | |||
97 | /** |
||
98 | * @var array |
||
99 | */ |
||
100 | private static $initialized = []; |
||
101 | |||
102 | /** |
||
103 | * @var DriverInterface |
||
104 | */ |
||
105 | private static $driver; |
||
106 | |||
107 | /** |
||
108 | * @var array |
||
109 | */ |
||
110 | private static $accessors = []; |
||
111 | |||
112 | /** |
||
113 | * @var array |
||
114 | */ |
||
115 | private static $mutators = []; |
||
116 | |||
117 | /** |
||
118 | * @var array |
||
119 | */ |
||
120 | private static $dispatchers = []; |
||
121 | |||
122 | /** |
||
123 | * @var string |
||
124 | */ |
||
125 | private $tablename; |
||
126 | |||
127 | /** |
||
128 | * @var bool |
||
129 | */ |
||
130 | private $hasId; |
||
131 | |||
132 | /** |
||
133 | * @var array |
||
134 | */ |
||
135 | private $idValues; |
||
136 | |||
137 | /** |
||
138 | * @var bool |
||
139 | */ |
||
140 | private $loaded = false; |
||
141 | |||
142 | /** |
||
143 | * @var Errors |
||
144 | */ |
||
145 | private $errors; |
||
146 | |||
147 | /** |
||
148 | * @var bool |
||
149 | */ |
||
150 | private $ignoreUnsaved; |
||
151 | |||
152 | /** |
||
153 | * Creates a new model object. |
||
154 | * |
||
155 | * @param array|string|Model|false $id ordered array of ids or comma-separated id string |
||
|
|||
156 | * @param array $values optional key-value map to pre-seed model |
||
157 | */ |
||
158 | public function __construct(array $values = []) |
||
159 | { |
||
160 | // initialize the model |
||
161 | $this->init(); |
||
162 | |||
163 | $ids = []; |
||
164 | $this->hasId = true; |
||
165 | foreach (static::$ids as $name) { |
||
166 | $id = false; |
||
167 | if (array_key_exists($name, $values)) { |
||
168 | $idProperty = static::definition()->get($name); |
||
169 | $id = Type::cast($idProperty, $values[$name]); |
||
170 | } |
||
171 | |||
172 | $ids[$name] = $id; |
||
173 | $this->hasId = $this->hasId && $id; |
||
174 | } |
||
175 | |||
176 | $this->idValues = $ids; |
||
177 | |||
178 | // load any given values |
||
179 | if ($this->hasId && count($values) > count($ids)) { |
||
180 | $this->refreshWith($values); |
||
181 | } elseif (!$this->hasId) { |
||
182 | $this->_unsaved = $values; |
||
183 | } |
||
184 | } |
||
185 | |||
186 | /** |
||
187 | * Performs initialization on this model. |
||
188 | */ |
||
189 | private function init() |
||
190 | { |
||
191 | // ensure the initialize function is called only once |
||
192 | $k = static::class; |
||
193 | if (!isset(self::$initialized[$k])) { |
||
194 | $this->initialize(); |
||
195 | self::$initialized[$k] = true; |
||
196 | } |
||
197 | } |
||
198 | |||
199 | /** |
||
200 | * The initialize() method is called once per model. This is a great |
||
201 | * place to install event listeners. |
||
202 | */ |
||
203 | protected function initialize() |
||
204 | { |
||
205 | if (property_exists(static::class, 'autoTimestamps')) { |
||
206 | self::creating(function (ModelEvent $event) { |
||
207 | $model = $event->getModel(); |
||
208 | $model->created_at = time(); |
||
209 | $model->updated_at = time(); |
||
210 | }); |
||
211 | |||
212 | self::updating(function (ModelEvent $event) { |
||
213 | $event->getModel()->updated_at = time(); |
||
214 | }); |
||
215 | } |
||
216 | } |
||
217 | |||
218 | /** |
||
219 | * Sets the driver for all models. |
||
220 | */ |
||
221 | public static function setDriver(DriverInterface $driver) |
||
222 | { |
||
223 | self::$driver = $driver; |
||
224 | } |
||
225 | |||
226 | /** |
||
227 | * Gets the driver for all models. |
||
228 | * |
||
229 | * @throws DriverMissingException when a driver has not been set yet |
||
230 | */ |
||
231 | public static function getDriver(): DriverInterface |
||
232 | { |
||
233 | if (!self::$driver) { |
||
234 | throw new DriverMissingException('A model driver has not been set yet.'); |
||
235 | } |
||
236 | |||
237 | return self::$driver; |
||
238 | } |
||
239 | |||
240 | /** |
||
241 | * Clears the driver for all models. |
||
242 | */ |
||
243 | public static function clearDriver() |
||
244 | { |
||
245 | self::$driver = null; |
||
246 | } |
||
247 | |||
248 | /** |
||
249 | * Gets the name of the model, i.e. User. |
||
250 | */ |
||
251 | public static function modelName(): string |
||
252 | { |
||
253 | // strip namespacing |
||
254 | $paths = explode('\\', static::class); |
||
255 | |||
256 | return end($paths); |
||
257 | } |
||
258 | |||
259 | /** |
||
260 | * Gets the model ID. |
||
261 | * |
||
262 | * @return string|number|false ID |
||
263 | */ |
||
264 | public function id() |
||
265 | { |
||
266 | if (!$this->hasId) { |
||
267 | return false; |
||
268 | } |
||
269 | |||
270 | if (1 == count($this->idValues)) { |
||
271 | return reset($this->idValues); |
||
272 | } |
||
273 | |||
274 | $result = []; |
||
275 | foreach (static::$ids as $k) { |
||
276 | $result[] = $this->idValues[$k]; |
||
277 | } |
||
278 | |||
279 | return implode(',', $result); |
||
280 | } |
||
281 | |||
282 | /** |
||
283 | * Gets a key-value map of the model ID. |
||
284 | * |
||
285 | * @return array ID map |
||
286 | */ |
||
287 | public function ids(): array |
||
288 | { |
||
289 | return $this->idValues; |
||
290 | } |
||
291 | |||
292 | /** |
||
293 | * Checks if the model has an identifier present. |
||
294 | * This does not indicate whether the model has been |
||
295 | * persisted to the database or loaded from the database. |
||
296 | */ |
||
297 | public function hasId(): bool |
||
298 | { |
||
299 | return $this->hasId; |
||
300 | } |
||
301 | |||
302 | ///////////////////////////// |
||
303 | // Magic Methods |
||
304 | ///////////////////////////// |
||
305 | |||
306 | /** |
||
307 | * Converts the model into a string. |
||
308 | * |
||
309 | * @return string |
||
310 | */ |
||
311 | public function __toString() |
||
312 | { |
||
313 | $values = array_merge($this->_values, $this->_unsaved, $this->idValues); |
||
314 | ksort($values); |
||
315 | |||
316 | return static::class.'('.json_encode($values, JSON_PRETTY_PRINT).')'; |
||
317 | } |
||
318 | |||
319 | /** |
||
320 | * Shortcut to a get() call for a given property. |
||
321 | * |
||
322 | * @param string $name |
||
323 | * |
||
324 | * @return mixed |
||
325 | */ |
||
326 | public function __get($name) |
||
327 | { |
||
328 | $result = $this->get([$name]); |
||
329 | |||
330 | return reset($result); |
||
331 | } |
||
332 | |||
333 | /** |
||
334 | * Sets an unsaved value. |
||
335 | * |
||
336 | * @param string $name |
||
337 | * @param mixed $value |
||
338 | */ |
||
339 | public function __set($name, $value) |
||
340 | { |
||
341 | // if changing property, remove relation model |
||
342 | if (isset($this->_relationships[$name])) { |
||
343 | unset($this->_relationships[$name]); |
||
344 | } |
||
345 | |||
346 | // call any mutators |
||
347 | $mutator = self::getMutator($name); |
||
348 | if ($mutator) { |
||
349 | $this->_unsaved[$name] = $this->$mutator($value); |
||
350 | } else { |
||
351 | $this->_unsaved[$name] = $value; |
||
352 | } |
||
353 | |||
354 | // set local ID property on belongs_to relationship |
||
355 | $property = static::definition()->get($name); |
||
356 | if ($property && Relationship::BELONGS_TO == $property->getRelationshipType() && !$property->isPersisted()) { |
||
357 | if ($value instanceof self) { |
||
358 | $this->_unsaved[$property->getLocalKey()] = $value->{$property->getForeignKey()}; |
||
359 | } elseif (null === $value) { |
||
360 | $this->_unsaved[$property->getLocalKey()] = null; |
||
361 | } else { |
||
362 | throw new ModelException('The value set on the "'.$name.'" property must be a model or null.'); |
||
363 | } |
||
364 | } |
||
365 | } |
||
366 | |||
367 | /** |
||
368 | * Checks if an unsaved value or property exists by this name. |
||
369 | * |
||
370 | * @param string $name |
||
371 | * |
||
372 | * @return bool |
||
373 | */ |
||
374 | public function __isset($name) |
||
375 | { |
||
376 | // isset() must return true for any value that could be returned by offsetGet |
||
377 | // because many callers will first check isset() to see if the value is accessible. |
||
378 | // This method is not supposed to only be valid for unsaved values, or properties |
||
379 | // that have a value. |
||
380 | return array_key_exists($name, $this->_unsaved) || static::definition()->has($name); |
||
381 | } |
||
382 | |||
383 | /** |
||
384 | * Unsets an unsaved value. |
||
385 | * |
||
386 | * @param string $name |
||
387 | */ |
||
388 | public function __unset($name) |
||
389 | { |
||
390 | if (array_key_exists($name, $this->_unsaved)) { |
||
391 | // if changing property, remove relation model |
||
392 | if (isset($this->_relationships[$name])) { |
||
393 | unset($this->_relationships[$name]); |
||
394 | } |
||
395 | |||
396 | unset($this->_unsaved[$name]); |
||
397 | } |
||
398 | } |
||
399 | |||
400 | ///////////////////////////// |
||
401 | // ArrayAccess Interface |
||
402 | ///////////////////////////// |
||
403 | |||
404 | public function offsetExists($offset) |
||
405 | { |
||
406 | return isset($this->$offset); |
||
407 | } |
||
408 | |||
409 | public function offsetGet($offset) |
||
410 | { |
||
411 | return $this->$offset; |
||
412 | } |
||
413 | |||
414 | public function offsetSet($offset, $value) |
||
415 | { |
||
416 | $this->$offset = $value; |
||
417 | } |
||
418 | |||
419 | public function offsetUnset($offset) |
||
420 | { |
||
421 | unset($this->$offset); |
||
422 | } |
||
423 | |||
424 | public static function __callStatic($name, $parameters) |
||
425 | { |
||
426 | // Any calls to unkown static methods should be deferred to |
||
427 | // the query. This allows calls like User::where() |
||
428 | // to replace User::query()->where(). |
||
429 | return call_user_func_array([static::query(), $name], $parameters); |
||
430 | } |
||
431 | |||
432 | ///////////////////////////// |
||
433 | // Property Definitions |
||
434 | ///////////////////////////// |
||
435 | |||
436 | /** |
||
437 | * Gets the model definition. |
||
438 | */ |
||
439 | public static function definition(): Definition |
||
440 | { |
||
441 | return DefinitionBuilder::get(static::class); |
||
442 | } |
||
443 | |||
444 | /** |
||
445 | * The buildDefinition() method is called once per model. It's used |
||
446 | * to generate the model definition. This is a great place to add any |
||
447 | * dynamic model properties. |
||
448 | */ |
||
449 | public static function buildDefinition(): Definition |
||
450 | { |
||
451 | $autoTimestamps = property_exists(static::class, 'autoTimestamps'); |
||
452 | $softDelete = property_exists(static::class, 'softDelete'); |
||
453 | |||
454 | return DefinitionBuilder::build(static::$properties, static::class, $autoTimestamps, $softDelete); |
||
455 | } |
||
456 | |||
457 | /** |
||
458 | * Gets the names of the model ID properties. |
||
459 | */ |
||
460 | public static function getIDProperties(): array |
||
464 | |||
465 | /** |
||
466 | * Gets the mutator method name for a given property name. |
||
467 | * Looks for methods in the form of `setPropertyValue`. |
||
468 | * i.e. the mutator for `last_name` would be `setLastNameValue`. |
||
469 | * |
||
470 | * @param string $property property |
||
471 | * |
||
472 | * @return string|null method name if it exists |
||
473 | */ |
||
474 | public static function getMutator(string $property): ?string |
||
475 | { |
||
476 | $class = static::class; |
||
477 | |||
478 | $k = $class.':'.$property; |
||
479 | if (!array_key_exists($k, self::$mutators)) { |
||
480 | $inflector = Inflector::get(); |
||
481 | $method = 'set'.$inflector->camelize($property).'Value'; |
||
482 | |||
483 | if (!method_exists($class, $method)) { |
||
484 | $method = null; |
||
485 | } |
||
486 | |||
492 | |||
493 | /** |
||
494 | * Gets the accessor method name for a given property name. |
||
495 | * Looks for methods in the form of `getPropertyValue`. |
||
496 | * i.e. the accessor for `last_name` would be `getLastNameValue`. |
||
497 | * |
||
498 | * @param string $property property |
||
499 | * |
||
500 | * @return string|null method name if it exists |
||
501 | */ |
||
502 | public static function getAccessor(string $property): ?string |
||
520 | |||
521 | /** |
||
522 | * @deprecated |
||
523 | * |
||
524 | * Gets the definition of all model properties |
||
525 | */ |
||
526 | public static function getProperties(): Definition |
||
530 | |||
531 | /** |
||
532 | * @deprecated |
||
533 | * |
||
534 | * Gets the definition of a specific property |
||
535 | * |
||
536 | * @param string $property property to lookup |
||
537 | */ |
||
538 | public static function getProperty(string $property): ?Property |
||
542 | |||
543 | /** |
||
544 | * @deprecated |
||
545 | * |
||
546 | * Checks if the model has a property |
||
547 | * |
||
548 | * @param string $property property |
||
549 | * |
||
550 | * @return bool has property |
||
551 | */ |
||
552 | public static function hasProperty(string $property): bool |
||
556 | |||
557 | ///////////////////////////// |
||
558 | // CRUD Operations |
||
559 | ///////////////////////////// |
||
560 | |||
561 | /** |
||
562 | * Gets the table name for storing this model. |
||
563 | */ |
||
564 | public function getTablename(): string |
||
574 | |||
575 | /** |
||
576 | * Gets the ID of the connection in the connection manager |
||
577 | * that stores this model. |
||
578 | */ |
||
579 | public function getConnection(): ?string |
||
583 | |||
584 | protected function usesTransactions(): bool |
||
588 | |||
589 | /** |
||
590 | * Saves the model. |
||
591 | * |
||
592 | * @return bool true when the operation was successful |
||
593 | */ |
||
594 | public function save(): bool |
||
602 | |||
603 | /** |
||
604 | * Saves the model. Throws an exception when the operation fails. |
||
605 | * |
||
606 | * @throws ModelException when the model cannot be saved |
||
607 | */ |
||
608 | public function saveOrFail() |
||
619 | |||
620 | /** |
||
621 | * Creates a new model. |
||
622 | * |
||
623 | * @param array $data optional key-value properties to set |
||
624 | * |
||
625 | * @return bool true when the operation was successful |
||
626 | * |
||
627 | * @throws BadMethodCallException when called on an existing model |
||
628 | */ |
||
629 | public function create(array $data = []): bool |
||
743 | |||
744 | /** |
||
745 | * Ignores unsaved values when fetching the next value. |
||
746 | * |
||
747 | * @return $this |
||
748 | */ |
||
749 | public function ignoreUnsaved() |
||
755 | |||
756 | /** |
||
757 | * Fetches property values from the model. |
||
758 | * |
||
759 | * This method looks up values in this order: |
||
760 | * IDs, local cache, unsaved values, storage layer, defaults |
||
761 | * |
||
762 | * @param array $properties list of property names to fetch values of |
||
763 | */ |
||
764 | public function get(array $properties): array |
||
802 | |||
803 | /** |
||
804 | * Gets a property value from the model. |
||
805 | * |
||
806 | * Values are looked up in this order: |
||
807 | * 1. unsaved values |
||
808 | * 2. local values |
||
809 | * 3. default value |
||
810 | * 4. null |
||
811 | * |
||
812 | * @return mixed |
||
813 | */ |
||
814 | private function getValue(string $name, array $values) |
||
836 | |||
837 | /** |
||
838 | * Populates a newly created model with its ID. |
||
839 | */ |
||
840 | private function getNewId() |
||
841 | { |
||
842 | $ids = []; |
||
843 | $namedIds = []; |
||
844 | foreach (static::$ids as $k) { |
||
845 | // attempt use the supplied value if the ID property is mutable |
||
846 | $property = static::definition()->get($k); |
||
847 | if (!$property->isImmutable() && isset($this->_unsaved[$k])) { |
||
848 | $id = $this->_unsaved[$k]; |
||
849 | } else { |
||
850 | $id = Type::cast($property, self::$driver->getCreatedId($this, $k)); |
||
851 | } |
||
852 | |||
853 | $ids[] = $id; |
||
854 | $namedIds[$k] = $id; |
||
855 | } |
||
856 | |||
857 | $this->hasId = true; |
||
858 | $this->idValues = $namedIds; |
||
859 | } |
||
860 | |||
861 | /** |
||
862 | * Sets a collection values on the model from an untrusted input. |
||
863 | * |
||
864 | * @param array $values |
||
865 | * |
||
866 | * @throws MassAssignmentException when assigning a value that is protected or not whitelisted |
||
867 | * |
||
868 | * @return $this |
||
869 | */ |
||
870 | public function setValues($values) |
||
890 | |||
891 | /** |
||
892 | * Converts the model to an array. |
||
893 | */ |
||
894 | public function toArray(): array |
||
937 | |||
938 | /** |
||
939 | * Checks if the unsaved value for a property is present and |
||
940 | * is different from the original value. |
||
941 | * |
||
942 | * @property string $name |
||
943 | * @property bool $hasChanged when true, checks if the unsaved value is different from the saved value |
||
944 | */ |
||
945 | public function dirty(string $name, bool $hasChanged = false): bool |
||
957 | |||
958 | /** |
||
959 | * Updates the model. |
||
960 | * |
||
961 | * @param array $data optional key-value properties to set |
||
962 | * |
||
963 | * @return bool true when the operation was successful |
||
964 | * |
||
965 | * @throws BadMethodCallException when not called on an existing model |
||
966 | */ |
||
967 | public function set(array $data = []): bool |
||
1056 | |||
1057 | /** |
||
1058 | * Delete the model. |
||
1059 | * |
||
1060 | * @return bool true when the operation was successful |
||
1061 | */ |
||
1062 | public function delete(): bool |
||
1112 | |||
1113 | /** |
||
1114 | * Restores a soft-deleted model. |
||
1115 | */ |
||
1116 | public function restore(): bool |
||
1150 | |||
1151 | /** |
||
1152 | * Checks if the model has been deleted. |
||
1153 | */ |
||
1154 | public function isDeleted(): bool |
||
1162 | |||
1163 | ///////////////////////////// |
||
1164 | // Queries |
||
1165 | ///////////////////////////// |
||
1166 | |||
1167 | /** |
||
1168 | * Generates a new query instance. |
||
1169 | */ |
||
1170 | public static function query(): Query |
||
1185 | |||
1186 | /** |
||
1187 | * Generates a new query instance that includes soft-deleted models. |
||
1188 | */ |
||
1189 | public static function withDeleted(): Query |
||
1198 | |||
1199 | /** |
||
1200 | * Finds a single instance of a model given it's ID. |
||
1201 | * |
||
1202 | * @param mixed $id |
||
1203 | * |
||
1204 | * @return static|null |
||
1205 | */ |
||
1206 | public static function find($id): ?self |
||
1223 | |||
1224 | /** |
||
1225 | * Finds a single instance of a model given it's ID or throws an exception. |
||
1226 | * |
||
1227 | * @param mixed $id |
||
1228 | * |
||
1229 | * @return static |
||
1230 | * |
||
1231 | * @throws ModelNotFoundException when a model could not be found |
||
1232 | */ |
||
1233 | public static function findOrFail($id): self |
||
1242 | |||
1243 | /** |
||
1244 | * Tells if this model instance has been persisted to the data layer. |
||
1245 | * |
||
1246 | * NOTE: this does not actually perform a check with the data layer |
||
1247 | */ |
||
1248 | public function persisted(): bool |
||
1252 | |||
1253 | /** |
||
1254 | * Loads the model from the storage layer. |
||
1255 | * |
||
1256 | * @return $this |
||
1257 | */ |
||
1258 | public function refresh() |
||
1275 | |||
1276 | /** |
||
1277 | * Loads values into the model. |
||
1278 | * |
||
1279 | * @param array $values values |
||
1280 | * |
||
1281 | * @return $this |
||
1282 | */ |
||
1283 | public function refreshWith(array $values) |
||
1298 | |||
1299 | /** |
||
1300 | * Clears the cache for this model. |
||
1301 | * |
||
1302 | * @return $this |
||
1303 | */ |
||
1304 | public function clearCache() |
||
1313 | |||
1314 | ///////////////////////////// |
||
1315 | // Relationships |
||
1316 | ///////////////////////////// |
||
1317 | |||
1318 | /** |
||
1319 | * Gets the relationship manager for a property. |
||
1320 | * |
||
1321 | * @throws InvalidArgumentException when the relationship manager cannot be created |
||
1322 | */ |
||
1323 | private function getRelationship(Property $property): AbstractRelation |
||
1332 | |||
1333 | /** |
||
1334 | * Saves any unsaved models attached through a relationship. This will only |
||
1335 | * save attached models that have not been saved yet. |
||
1336 | */ |
||
1337 | private function saveRelationships(bool $usesTransactions): bool |
||
1367 | |||
1368 | /** |
||
1369 | * This hydrates an individual property in the model. It can be a |
||
1370 | * scalar value or relationship. |
||
1371 | * |
||
1372 | * @internal |
||
1373 | * |
||
1374 | * @param $value |
||
1375 | */ |
||
1376 | public function hydrateValue(string $name, $value): void |
||
1384 | |||
1385 | /** |
||
1386 | * @deprecated |
||
1387 | * |
||
1388 | * Gets the model(s) for a relationship |
||
1389 | * |
||
1390 | * @param string $k property |
||
1391 | * |
||
1392 | * @throws InvalidArgumentException when the relationship manager cannot be created |
||
1393 | * |
||
1394 | * @return Model|array|null |
||
1395 | */ |
||
1396 | public function relation(string $k) |
||
1405 | |||
1406 | /** |
||
1407 | * @deprecated |
||
1408 | * |
||
1409 | * Sets the model for a one-to-one relationship (has-one or belongs-to) |
||
1410 | * |
||
1411 | * @return $this |
||
1412 | */ |
||
1413 | public function setRelation(string $k, Model $model) |
||
1420 | |||
1421 | /** |
||
1422 | * @deprecated |
||
1423 | * |
||
1424 | * Sets the model for a one-to-many relationship |
||
1425 | * |
||
1426 | * @return $this |
||
1427 | */ |
||
1428 | public function setRelationCollection(string $k, iterable $models) |
||
1434 | |||
1435 | /** |
||
1436 | * @deprecated |
||
1437 | * |
||
1438 | * Sets the model for a one-to-one relationship (has-one or belongs-to) as null |
||
1439 | * |
||
1440 | * @return $this |
||
1441 | */ |
||
1442 | public function clearRelation(string $k) |
||
1449 | |||
1450 | ///////////////////////////// |
||
1451 | // Events |
||
1452 | ///////////////////////////// |
||
1453 | |||
1454 | /** |
||
1455 | * Gets the event dispatcher. |
||
1456 | */ |
||
1457 | public static function getDispatcher($ignoreCache = false): EventDispatcher |
||
1466 | |||
1467 | /** |
||
1468 | * Subscribes to a listener to an event. |
||
1469 | * |
||
1470 | * @param string $event event name |
||
1471 | * @param int $priority optional priority, higher #s get called first |
||
1472 | */ |
||
1473 | public static function listen(string $event, callable $listener, int $priority = 0) |
||
1477 | |||
1478 | /** |
||
1479 | * Adds a listener to the model.creating and model.updating events. |
||
1480 | */ |
||
1481 | public static function saving(callable $listener, int $priority = 0) |
||
1486 | |||
1487 | /** |
||
1488 | * Adds a listener to the model.created and model.updated events. |
||
1489 | */ |
||
1490 | public static function saved(callable $listener, int $priority = 0) |
||
1495 | |||
1496 | /** |
||
1497 | * Adds a listener to the model.creating event. |
||
1498 | */ |
||
1499 | public static function creating(callable $listener, int $priority = 0) |
||
1503 | |||
1504 | /** |
||
1505 | * Adds a listener to the model.created event. |
||
1506 | */ |
||
1507 | public static function created(callable $listener, int $priority = 0) |
||
1511 | |||
1512 | /** |
||
1513 | * Adds a listener to the model.updating event. |
||
1514 | */ |
||
1515 | public static function updating(callable $listener, int $priority = 0) |
||
1519 | |||
1520 | /** |
||
1521 | * Adds a listener to the model.updated event. |
||
1522 | */ |
||
1523 | public static function updated(callable $listener, int $priority = 0) |
||
1527 | |||
1528 | /** |
||
1529 | * Adds a listener to the model.deleting event. |
||
1530 | */ |
||
1531 | public static function deleting(callable $listener, int $priority = 0) |
||
1535 | |||
1536 | /** |
||
1537 | * Adds a listener to the model.deleted event. |
||
1538 | */ |
||
1539 | public static function deleted(callable $listener, int $priority = 0) |
||
1543 | |||
1544 | /** |
||
1545 | * Dispatches the given event and checks if it was successful. |
||
1546 | * |
||
1547 | * @return bool true if the events were successfully propagated |
||
1548 | */ |
||
1549 | private function performDispatch(string $eventName, bool $usesTransactions): bool |
||
1565 | |||
1566 | ///////////////////////////// |
||
1567 | // Validation |
||
1568 | ///////////////////////////// |
||
1569 | |||
1570 | /** |
||
1571 | * Gets the error stack for this model. |
||
1572 | */ |
||
1573 | public function getErrors(): Errors |
||
1581 | |||
1582 | /** |
||
1583 | * Checks if the model in its current state is valid. |
||
1584 | */ |
||
1585 | public function valid(): bool |
||
1606 | } |
||
1607 |
This check looks for PHPDoc comments describing methods or function parameters that do not exist on the corresponding method or function.
Consider the following example. The parameter
$italy
is not defined by the methodfinale(...)
.The most likely cause is that the parameter was removed, but the annotation was not.