for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?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 <[email protected]>
*/
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);