for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Softius\ResourcesResolver;
/**
* Class StrategyAwareTrait
* @package Softius\ResourcesResolver
*/
trait StrategyAwareTrait {
* @var ResolvableInterface
private $strategy;
* @param ResolvableInterface $strategy
public function setStrategy(ResolvableInterface $strategy) {
$this->strategy = $strategy;
}
* @return mixed
public function getStrategy() {
return $this->strategy;