Created
March 16, 2012 13:38
-
-
Save ezimuel/2050095 to your computer and use it in GitHub Desktop.
LoggerAware
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace Zend\Log; | |
use Zend\Log\Logger; | |
interface LoggerAware | |
{ | |
public function setLogger(Logger $logger); | |
public function getLogger(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment