Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2
3declare(strict_types=1);
4
5namespace Alistaircol\Hta\Domain\Basket\Concerns;
6
7interface ProductInterface
8{
9    public function getId(): string;
10    public function getName(): string;
11    public function getPrice(): int;
12    public function getDiscountedPrice(?OfferInterface $offer = null): int;
13}