Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
<?php | |
declare(strict_types=1); | |
namespace App\Quote\Collection; | |
use App\Quote\Model\QuoteInterface; | |
interface QuoteCollectionInterface | |
{ | |
public static function fromArray(array $items): QuoteCollection; | |
public static function fromItems(QuoteInterface ...$items): QuoteCollection; | |
public function items(): array; | |
public function toArray(): array; | |
} |