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\Security\Test;
/**
* @author Yaroslav Honcharuk <[email protected]>
class SensioExtraTest extends AbstractSymfonySecurityTest
{
* @var array
private $metadata = [];
* @param string $name
* @param mixed $value
* @return self
public function setMetadata($name, $value)
$this->metadata[$name] = $value;
return $this;
}
* @return mixed
public function getMetadata($name)
return isset($this->metadata[$name]) ? $this->metadata[$name] : null;