update cs after php-cs-fixer upgrade

This commit is contained in:
2024-09-12 12:02:33 +02:00
parent 5d0b531820
commit f0f651edea
286 changed files with 374 additions and 374 deletions

View File

@@ -20,13 +20,13 @@ interface SingleTaskAclAwareRepositoryInterface
?string $pattern = null,
?array $flags = [],
?array $types = [],
?array $users = []
?array $users = [],
): int;
public function countByCourse(
AccompanyingPeriod $course,
?string $pattern = null,
?array $flags = []
?array $flags = [],
): int;
public function countByCurrentUsersTasks(?string $pattern = null, ?array $flags = []): int;
@@ -34,7 +34,7 @@ interface SingleTaskAclAwareRepositoryInterface
public function countByPerson(
Person $person,
?string $pattern = null,
?array $flags = []
?array $flags = [],
): int;
public function findByAllViewable(
@@ -44,7 +44,7 @@ interface SingleTaskAclAwareRepositoryInterface
?array $users = [],
?int $start = 0,
?int $limit = 50,
?array $orderBy = []
?array $orderBy = [],
): array;
public function findByCourse(
@@ -53,7 +53,7 @@ interface SingleTaskAclAwareRepositoryInterface
?array $flags = [],
?int $start = 0,
?int $limit = 50,
?array $orderBy = []
?array $orderBy = [],
): array;
public function findByCurrentUsersTasks(?string $pattern = null, ?array $flags = [], ?int $start = 0, ?int $limit = 50, ?array $orderBy = []): array;
@@ -64,6 +64,6 @@ interface SingleTaskAclAwareRepositoryInterface
?array $flags = [],
?int $start = 0,
?int $limit = 50,
?array $orderBy = []
?array $orderBy = [],
): array;
}