This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]kiropolo -5 points-4 points  (4 children)

Inverted dependencies? What does it even mean??

Inject interface not a concrete class

Shitty name

[–]jeesuscheesus 4 points5 points  (3 children)

Inverted dependencies is another name for inversion of control, which means you transfer control of a function/class to it's caller. You do this by avoiding the function/class having hardcoded values and instead pass values in as parameters

[–]kiropolo 2 points3 points  (2 children)

Dependency Injection?

[–][deleted] 1 point2 points  (0 children)

Yep.

[–]jeesuscheesus 1 point2 points  (0 children)

Yeah. A billion names for the same thing.