Skip to content

Instantly share code, notes, and snippets.

@pedrogk
Created April 16, 2017 03:21
Show Gist options
  • Save pedrogk/0c7efdc2c92da003cee9e964eb6d1863 to your computer and use it in GitHub Desktop.
Save pedrogk/0c7efdc2c92da003cee9e964eb6d1863 to your computer and use it in GitHub Desktop.
Inyección vía propiedades
<?php
class MyClass {
public $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