Skip to content

Instantly share code, notes, and snippets.

@podlom
Created October 30, 2025 08:50
Show Gist options
  • Save podlom/02cd0cd01aedfe423e9e18bc5be0ffd1 to your computer and use it in GitHub Desktop.
Save podlom/02cd0cd01aedfe423e9e18bc5be0ffd1 to your computer and use it in GitHub Desktop.
Laravel Service Container YouTube Short code example
<?php
// Laravel Service Container — The Magic Behind Dependency Injection Code Example
public function __construct(LoggerInterface $logger) {
$this->logger = $logger;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment