Add daily emails and archive

This commit is contained in:
Oliver Davies 2024-01-03 20:00:00 +00:00
parent 7ec664a810
commit e2b6832598
379 changed files with 11132 additions and 0 deletions

View file

@ -0,0 +1,22 @@
---
title: >
Don't inject too many dependencies
pubDate: 2023-09-12
permalink: >-
archive/2023/09/12/dont-inject-too-many-dependencies
tags:
- software-development
- clean-code
---
While dependency injection is a good practice - i.e., passing dependencies into a class, usually via a constructor method - you want to be aware of how many dependencies you inject into each class.
There's no hard and fast rule, but I usually notice when I get to three dependencies and rarely inject more than four or five into a class.
Having too many dependencies suggests that the class is doing too much and has too many responsibilities and that another class may be needed.
## Here's the thing
Having smaller and simpler classes makes them easier to read, maintain and review. Ideally, each class should only have one responsibility, so it adheres to the Single Responsibility Principle (the "S" in SOLID).
Creating classes is cheap, so why not split one large and difficult-to-maintain class with many dependencies into multiple smaller and easier-to-work-with ones?