| 1 | <?php  | 
            ||
| 10 | final class ProductReviewerProvider implements ProductReviewerProviderInterface  | 
            ||
| 11 | { | 
            ||
| 12 | /**  | 
            ||
| 13 | * @var CustomerProviderInterface  | 
            ||
| 14 | */  | 
            ||
| 15 | private $customerProvider;  | 
            ||
| 16 | |||
| 17 | public function __construct(CustomerProviderInterface $customerProvider)  | 
            ||
| 21 | |||
| 22 | public function provide(string $email): ProductReviewerInterface  | 
            ||
| 31 | }  | 
            ||
| 32 |