Skip to content

Instantly share code, notes, and snippets.

@VaclavSir
Created January 9, 2017 09:38
Show Gist options
  • Save VaclavSir/2170eef3eff00c81d5f9b8a48838d092 to your computer and use it in GitHub Desktop.
Save VaclavSir/2170eef3eff00c81d5f9b8a48838d092 to your computer and use it in GitHub Desktop.
<?php
abstract class Service
{
public function doSomething()
{
something();
$this->getLogger()->log('¯\_(ツ)_/¯');
}
abstract protected function getLogger() : ILogger;
}
service:
class: Service
getters:
getLogger: '@logger'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment