for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SvImages\Router;
use SvImages\Parser\Result;
use Zend\Mvc\Router\Http\RouteMatch as HttpRouteMatch;
/**
* @author Vytautas Stankus <[email protected]>
* @license MIT
*/
class RouteMatch extends HttpRouteMatch
{
* @var Result
protected $parserResult;
* @param Result $result
public function setParserResult(Result $result)
$this->parserResult = $result;
}
* @return Result|null
public function getParserResult()
return $this->parserResult;