Claude
Skills
Sign in
Back

laravel-interfaces-and-di

Included with Lifetime
$97 forever

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

General

What this skill does


# Interfaces and Dependency Injection

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

```php
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.

Related in General