Laravel:interfaces And Di

Use interfaces and dependency injection to decouple code; bind implementations in the container

jpcaparas Updated

File contents

Interfaces and Dependency Injection

Define narrow interfaces and inject them where needed. Bind concrete implementations in a service provider.

interface Slugger { public function slug(string $s): string; }

final class AsciiSlugger implements Slugger {
  public function slug(string $s): string { /* ... */ }
}

$this->app->bind(Slugger::class, AsciiSlugger::class);

Benefits: easier testing (mock interfaces), clearer contracts, swap implementations without touching consumers.

jpcaparas/superpowers-laravel/tree/main/skills/interfaces-and-di commit 588e06c9f2

Frequently asked questions

npx skillmds@latest add jpcaparas/laravel-interfaces-and-di