| 1 | <?php namespace Modules\Recipe\Repositories\Cache; |
||
| 6 | class CacheRecipeDecorator extends BaseCacheDecorator implements RecipeRepository |
||
| 7 | { |
||
| 8 | public function __construct(RecipeRepository $recipe) |
||
| 9 | { |
||
| 10 | parent::__construct(); |
||
| 11 | $this->entityName = 'recipe.recipes'; |
||
| 12 | $this->repository = $recipe; |
||
| 13 | } |
||
| 14 | } |
||
| 15 |