this post was submitted on 02 May 2024
385 points (92.3% liked)
Programmer Humor
19804 readers
445 users here now
Welcome to Programmer Humor!
This is a place where you can post jokes, memes, humor, etc. related to programming!
For sharing awful code theres also Programming Horror.
Rules
- Keep content in english
- No advertisements
- Posts must be related to programming or programmer topics
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
At work we have a lot of old monolithic OOP PHP code. Dependency injection has been the new way to do things since before I started and it's basically never used anywhere.
I assume most people just find it easier to create a new class instance where it's needed.
I've never really seen a case where I think, "dependency injection would be amazing here" I assume there is a case otherwise it wouldn't exist.
As a fellow PHP dev (working in laminas specifically) DI actually is fucking awful, there's a distinction between a service factory pattern and this thing called DI which is similar to a service factory pattern but uses reflection based type sniffing to guess at which service you want where. I'd considered making a reference to it but PHP developers are few and far between these days.
There are dozens of us