Skip to content

Instantly share code, notes, and snippets.

@mkusher
Last active January 22, 2017 21:09
Show Gist options
  • Save mkusher/c2fb335d5252b6302f630db7c758d77e to your computer and use it in GitHub Desktop.
Save mkusher/c2fb335d5252b6302f630db7c758d77e to your computer and use it in GitHub Desktop.
<?php
interface Logger
{
public function log(string $message, int $level = 0): void;
}
<?php
class Service
{
private $logger;
public function __construct(Logger $logger) {
$this->logger = $logger;
}
public function action() {
$this->logger->log("start");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment