Skip to content

Instantly share code, notes, and snippets.

@pedrogk
Created April 16, 2017 03:17
Show Gist options
  • Save pedrogk/f40a968f0a141e3a2ce617c8198b8979 to your computer and use it in GitHub Desktop.
Save pedrogk/f40a968f0a141e3a2ce617c8198b8979 to your computer and use it in GitHub Desktop.
Inyección via métodos
<?php
class MyClass {
private $logger;
public function setLogger(LoggerInterface $logger) {
$this->logger = $logger;
}
public function send($message) {
return $this->logger->info($message);
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment