Skip to content
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.

Commit

Permalink
Merge pull request zendframework/zendframework#1960 from Maks3w/hotfi…
Browse files Browse the repository at this point in the history
…x/zend_log-missing-firephp-interface

[Log][FirePhp] Fix path to FirePhpInterface
  • Loading branch information
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/Writer/FirePhp.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class FirePhp extends AbstractWriter
/**
* The instance of FirePhp that is used to log messages to.
*
* @var FirePhpInstance
* @var FirePhp\FirePhpInterface
*/
protected $firephp;

Expand Down Expand Up @@ -79,7 +79,7 @@ protected function doWrite(array $event)
/**
* Gets the FirePhp instance that is used for logging.
*
* @return FirePhpInstance
* @return FirePhp\FirePhpInterface
*/
public function getFirePhp()
{
Expand Down
2 changes: 1 addition & 1 deletion test/TestAsset/MockFirePhp.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
namespace ZendTest\Log\TestAsset;

use Zend\Log\Writer\FirePhpInterface;
use Zend\Log\Writer\FirePhp\FirePhpInterface;

class MockFirePhp implements FirePhpInterface {

Expand Down
2 changes: 1 addition & 1 deletion test/Writer/FirePhpTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

use ZendTest\Log\TestAsset\MockFirePhp;
use Zend\Log\Writer\FirePhp;
use Zend\Log\Writer\FirePhpInterface;
use Zend\Log\Writer\FirePhp\FirePhpInterface;
use Zend\Log\Logger;

/**
Expand Down

0 comments on commit 86b9031

Please sign in to comment.