Revert "📈 Add GlitchTip"

This reverts commit d5679a626d.
This commit is contained in:
2020-08-05 18:35:05 +01:00
parent d5679a626d
commit deb25e1c40
548 changed files with 4 additions and 74474 deletions

View File

@@ -1,35 +0,0 @@
<?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);
}
}