📈 Install Sentry

Signed-off-by: Luke Tainton <luke@tainton.uk>
This commit is contained in:
2020-08-05 18:45:39 +01:00
parent bbba704df3
commit 75f1dde336
541 changed files with 73830 additions and 2 deletions

View File

@@ -0,0 +1,35 @@
<?php
namespace Http\Message\RequestMatcher;
use Http\Message\RequestMatcher;
use Psr\Http\Message\RequestInterface;
/**
* Match a request with a callback.
*
* @author Márk Sági-Kazár <mark.sagikazar@gmail.com>
*/
final class CallbackRequestMatcher implements RequestMatcher
{
/**
* @var callable
*/
private $callback;
/**
* @param callable $callback
*/
public function __construct(callable $callback)
{
$this->callback = $callback;
}
/**
* {@inheritdoc}
*/
public function matches(RequestInterface $request)
{
return (bool) call_user_func($this->callback, $request);
}
}