9 lines
165 B
PHP
9 lines
165 B
PHP
<?php
|
|
|
|
namespace App\Component\Printer\Domain;
|
|
|
|
interface PrinterRepository
|
|
{
|
|
public function findById(int $id): Printer;
|
|
public function findAll(): array;
|
|
} |