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 RouteMetadata
{
* @var array
private $defaults;
private $variables;
* @param array $defaults
* @param array $variables
public function __construct(array $defaults, array $variables)
$this->defaults = $defaults;
$this->variables = $variables;
}
* @return array
public function getDefaults()
return $this->defaults;
public function getVariables()
return $this->variables;