1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-07 21:56:31 +02:00
This commit is contained in:
Jordi Boggiano
2014-12-29 20:46:15 +00:00
parent 5ce2b38b3b
commit d7b0a0a20b
4 changed files with 3 additions and 4 deletions

View File

@@ -11,7 +11,6 @@
namespace Monolog\Handler; namespace Monolog\Handler;
use Monolog\Formatter\FormatterInterface;
/** /**
* Sampling handler * Sampling handler

View File

@@ -241,6 +241,7 @@ class TestStreamFoo
public function __toString() public function __toString()
{ {
fseek($this->resource, 0); fseek($this->resource, 0);
return $this->foo . ' - ' . (string) stream_get_contents($this->resource); return $this->foo . ' - ' . (string) stream_get_contents($this->resource);
} }
} }

View File

@@ -12,7 +12,6 @@
namespace Monolog\Handler; namespace Monolog\Handler;
use Monolog\TestCase; use Monolog\TestCase;
use Monolog\Logger;
/** /**
* @covers Monolog\Handler\SamplingHandler::handle * @covers Monolog\Handler\SamplingHandler::handle