13 lines
259 B
PHP
13 lines
259 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Malio\EdnotifBundle\Bovin\Api;
|
|
|
|
use Malio\EdnotifBundle\Bovin\Dto\AnimalFileDto;
|
|
|
|
interface BovinApiInterface
|
|
{
|
|
public function getAnimalFile(string $nationalNumber, string $countryCode = 'FR'): AnimalFileDto;
|
|
}
|