| 1 | <?php  | 
            ||
| 9 | trait UtilityAwareTrait  | 
            ||
| 10 | { | 
            ||
| 11 | /**  | 
            ||
| 12 | * @var FractalUtility  | 
            ||
| 13 | */  | 
            ||
| 14 | protected $fractalUtility;  | 
            ||
| 15 | |||
| 16 | /**  | 
            ||
| 17 | * @var RedisUtility  | 
            ||
| 18 | */  | 
            ||
| 19 | protected $redisUtility;  | 
            ||
| 20 | |||
| 21 | /**  | 
            ||
| 22 | * @var DateValidationUtility  | 
            ||
| 23 | */  | 
            ||
| 24 | protected $dateValidationUtility;  | 
            ||
| 25 | |||
| 26 | /**  | 
            ||
| 27 | * Sets the Fractal Utility  | 
            ||
| 28 | *  | 
            ||
| 29 | * @param FractalUtility $class  | 
            ||
| 30 | */  | 
            ||
| 31 | public function setFractalUtility(FractalUtility $class)  | 
            ||
| 35 | |||
| 36 | /**  | 
            ||
| 37 | * Gets the Fractal Utility  | 
            ||
| 38 | *  | 
            ||
| 39 | * @return FractalUtility  | 
            ||
| 40 | */  | 
            ||
| 41 | public function getFractalUtility()  | 
            ||
| 45 | |||
| 46 | /**  | 
            ||
| 47 | * Sets the Redis Utility  | 
            ||
| 48 | *  | 
            ||
| 49 | * @param RedisUtility $class  | 
            ||
| 50 | */  | 
            ||
| 51 | public function setRedisUtility(RedisUtility $class)  | 
            ||
| 55 | |||
| 56 | /**  | 
            ||
| 57 | * Gets the Redis Utility  | 
            ||
| 58 | *  | 
            ||
| 59 | * @return RedisUtility  | 
            ||
| 60 | */  | 
            ||
| 61 | public function getRedisUtility()  | 
            ||
| 65 | |||
| 66 | /**  | 
            ||
| 67 | * Sets the Redis Utility  | 
            ||
| 68 | *  | 
            ||
| 69 | * @param DateValidationUtility $class  | 
            ||
| 70 | */  | 
            ||
| 71 | public function setDateValidationUtility(DateValidationUtility $class)  | 
            ||
| 75 | |||
| 76 | /**  | 
            ||
| 77 | * Gets the Redis Utility  | 
            ||
| 78 | *  | 
            ||
| 79 | * @return DateValidationUtility  | 
            ||
| 80 | */  | 
            ||
| 81 | public function getDateValidationUtility()  | 
            ||
| 85 | }  | 
            ||
| 86 |