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]>
trait ProviderAwareTrait
{
* @var string
protected $providerClass;
* @param string $class
public function setProviderClass($class)
$this->providerClass = $class;
}
* @return string
public function getProviderClass()
return $this->providerClass;