- Ajout de node et npm dans la Dockerfile - Ajout des Factories et Fixtures - Ajout de npm-install dans Make install
10 lines
167 B
PHP
10 lines
167 B
PHP
<?php
|
|
|
|
namespace App\Service;
|
|
|
|
interface MangaProviderInterface
|
|
{
|
|
public function getMangaList(): array;
|
|
public function getChapterList(string $mangaSlug): array;
|
|
}
|