|
1
|
<?php |
|
2
|
|
|
3
|
declare(strict_types=1); |
|
4
|
|
|
5
|
namespace AC\Admin\Colors; |
|
6
|
|
|
7
|
use AC\Admin\Colors\Type\Color; |
|
8
|
|
|
9
|
interface ColorReader |
|
10
|
{ |
|
11
|
public function find_all(): ColorCollection; |
|
12
|
|
|
13
|
public function find_with_name(string $name): ?Color; |
|
14
|
|
|
15
|
} |
|
16
|
|