setLoggerImpl() public static method

public static setLoggerImpl ( Psr\Log\LoggerInterface $impl )
$impl Psr\Log\LoggerInterface
示例#1
0
文件: LoggerTest.php 项目: comos/qpm
 /**
  * @expectedException InvalidArgumentException
  * @expectedExceptionMessage Logger Impl must be instance of Psr\Log\LoggerInterface
  */
 public function testSetLoggerImpl()
 {
     $obj = new \ArrayObject();
     Logger::setLoggerImpl($obj);
 }