for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
*
* (c) Yaroslav Honcharuk <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Yarhon\RouteGuardBundle\Routing;
/**
* @author Yaroslav Honcharuk <[email protected]>
class GeneratedUrlAwareRouteContext extends RouteContext implements GeneratedUrlAwareInterface
{
* @var int
private $referenceType;
* @var string
private $generatedUrl;
* {@inheritdoc}
public function setReferenceType($referenceType)
$this->referenceType = $referenceType;
}
public function getReferenceType()
return $this->referenceType;
public function setGeneratedUrl($generatedUrl)
$this->generatedUrl = $generatedUrl;
public function getGeneratedUrl()
return $this->generatedUrl;