Signed-off-by: Christian Wolf <github@christianwolf.email>
This commit is contained in:
Christian Wolf 2024-05-20 20:59:01 +02:00
Родитель 2053d0c577
Коммит 850e7ee9fd
3 изменённых файлов: 2 добавлений и 3 удалений

Просмотреть файл

@ -10,7 +10,7 @@ class NormalizeRecipeFileFilter {
public function __construct(
RecipeDatesFilter $datesFilter,
RecipeNameLengthFilter $recipeNameLengthFilter,
RecipeNameLengthFilter $recipeNameLengthFilter
) {
$this->filters = [
$datesFilter,

Просмотреть файл

@ -82,7 +82,7 @@ class RecipeService {
HtmlDownloadService $downloadService,
RecipeExtractionService $extractionService,
JSONFilter $jsonFilter,
DownloadHelper $downloadHelper,
DownloadHelper $downloadHelper
) {
$this->user_id = $UserId;
$this->root = $root;

Просмотреть файл

@ -4,7 +4,6 @@ namespace OCA\Cookbook\tests\Unit\Helper\Filter\DB;
use OCA\Cookbook\Helper\Filter\DB\RecipeNameLengthFilter;
use OCP\Files\File;
use PHPUnit\Framework\MockObject\Stub;
use PHPUnit\Framework\TestCase;
/**