php cs fixer with latest version

This commit is contained in:
2024-02-07 10:12:13 +01:00
parent 81e46f2b52
commit ea47d9ff09
277 changed files with 676 additions and 677 deletions

View File

@@ -46,10 +46,10 @@ class Generator implements GeneratorInterface
DocGeneratorTemplate $template,
int $entityId,
array $contextGenerationDataNormalized,
StoredObject $destinationStoredObject = null,
?StoredObject $destinationStoredObject = null,
bool $isTest = false,
File $testFile = null,
User $creator = null
?File $testFile = null,
?User $creator = null
): ?string {
if ($destinationStoredObject instanceof StoredObject && StoredObject::STATUS_PENDING !== $destinationStoredObject->getStatus()) {
$this->logger->info(self::LOG_PREFIX.'Aborting generation of an already generated document');

View File

@@ -16,7 +16,7 @@ class GeneratorException extends \RuntimeException
/**
* @param string[] $errors
*/
public function __construct(private readonly array $errors = [], \Throwable $previous = null)
public function __construct(private readonly array $errors = [], ?\Throwable $previous = null)
{
parent::__construct(
'Could not generate the document',

View File

@@ -33,9 +33,9 @@ interface GeneratorInterface
DocGeneratorTemplate $template,
int $entityId,
array $contextGenerationDataNormalized,
StoredObject $destinationStoredObject = null,
?StoredObject $destinationStoredObject = null,
bool $isTest = false,
File $testFile = null,
User $creator = null
?File $testFile = null,
?User $creator = null
): ?string;
}

View File

@@ -13,7 +13,7 @@ namespace Chill\DocGeneratorBundle\Service\Generator;
class RelatedEntityNotFoundException extends \RuntimeException
{
public function __construct(string $relatedEntityClass, int $relatedEntityId, \Throwable $previous = null)
public function __construct(string $relatedEntityClass, int $relatedEntityId, ?\Throwable $previous = null)
{
parent::__construct(
sprintf('Related entity not found: %s, %s', $relatedEntityClass, $relatedEntityId),