mirror of
https://github.com/archtechx/laravel-tips.git
synced 2025-12-12 05:14:04 +00:00
506 B
506 B
| title | tweet_id | thread_slug | author_username | images | created_at | slug | |
|---|---|---|---|---|---|---|---|
| Use Data Transfer Objects (DTOs) | 1272822466528845825 | laravel-clean-code-tactics | samuelstancl |
|
2020-06-16T09:24:58+00:00 | use-data-transfer-objects-dtos |
Rather than passing a huge amount of arguments in a specific order, consider creating an object with properties to store this data.
Bonus points if you can find that some behavior can be moved into to this object.