1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-10-22 17:16:18 +02:00

Use callable typehint where possible + Removed dead code (#996)

* Removed dead code

* Use callable typehint where possible

* Removed PHP5.3 workaround
This commit is contained in:
Grégoire Pineau
2017-06-19 01:41:02 +02:00
committed by Jordi Boggiano
parent 91a0f40927
commit 5a041bab8f
3 changed files with 4 additions and 19 deletions

View File

@@ -28,9 +28,6 @@ trait ProcessableHandlerTrait
*/
public function pushProcessor(callable $callback): HandlerInterface
{
if (!is_callable($callback)) {
throw new \InvalidArgumentException('Processors must be valid callables (callback or object with an __invoke method), '.var_export($callback, true).' given');
}
array_unshift($this->processors, $callback);
return $this;

View File

@@ -109,12 +109,8 @@ class TestHandler extends AbstractProcessingHandler
}, $level);
}
public function hasRecordThatPasses($predicate, $level)
public function hasRecordThatPasses(callable $predicate, $level)
{
if (!is_callable($predicate)) {
throw new \InvalidArgumentException("Expected a callable for hasRecordThatPasses");
}
if (!isset($this->recordsByLevel[$level])) {
return false;
}