for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace MediaMonks\RestApi\Request;
class PathRequestMatcher extends RegexRequestMatcher
{
/**
* @param string $path
*/
public function __construct($path)
parent::__construct([sprintf('~^/%s~', $path), sprintf('~^/%s/~', $path)]);
}