| @@ -98,7 +98,7 @@ | ||
| 98 | 98 | $progressBar = new ProgressBar($output, \count($sqls)); | 
| 99 | 99 | $progressBar->start(); | 
| 100 | 100 | |
| 101 | -            $updateManager->updateAuditSchema($sqls, static function (array $progress) use ($progressBar): void { | |
| 101 | +            $updateManager->updateAuditSchema($sqls, static function(array $progress) use ($progressBar): void { | |
| 102 | 102 | $progressBar->advance(); | 
| 103 | 103 | }); | 
| 104 | 104 | |
| @@ -93,7 +93,7 @@ | ||
| 93 | 93 | $repository[$key][$entity] = $tableName; | 
| 94 | 94 | } | 
| 95 | 95 | } | 
| 96 | -        $findEntityByTablename = static function (string $tableName) use ($repository): ?string { | |
| 96 | +        $findEntityByTablename = static function(string $tableName) use ($repository): ?string { | |
| 97 | 97 |              foreach ($repository as $emName => $map) { | 
| 98 | 98 | $result = array_search($tableName, $map, true); | 
| 99 | 99 |                  if (false !== $result) { | 
| @@ -41,7 +41,7 @@ | ||
| 41 | 41 | |
| 42 | 42 | // extend the SQL logger | 
| 43 | 43 | $this->loggerBackup = $entityManager->getConnection()->getConfiguration()->getSQLLogger(); | 
| 44 | -        $auditLogger = new Logger(function () use ($entityManager, $transaction): void { | |
| 44 | +        $auditLogger = new Logger(function() use ($entityManager, $transaction): void { | |
| 45 | 45 | // flushes pending data | 
| 46 | 46 | $entityManager->getConnection()->getConfiguration()->setSQLLogger($this->loggerBackup); | 
| 47 | 47 | $this->transactionManager->process($transaction); | 
| @@ -59,7 +59,7 @@ | ||
| 59 | 59 | $storageServices = $this->provider->getStorageServices(); | 
| 60 | 60 | |
| 61 | 61 | \assert(array_values($auditingServices)[0] instanceof AuditingService); // helps PHPStan | 
| 62 | - \assert(array_values($storageServices)[0] instanceof StorageService); // helps PHPStan | |
| 62 | + \assert(array_values($storageServices)[0] instanceof StorageService); // helps PHPStan | |
| 63 | 63 | $isSameEntityManager = 1 === \count($auditingServices) && 1 === \count($storageServices) | 
| 64 | 64 | && array_values($auditingServices)[0]->getEntityManager() === array_values($storageServices)[0]->getEntityManager(); | 
| 65 | 65 | |
| @@ -27,7 +27,7 @@ | ||
| 27 | 27 | } | 
| 28 | 28 | // on rollback remove flusher callback | 
| 29 | 29 |          if ('"ROLLBACK"' === $sql) { | 
| 30 | -            $this->flusher = static function (): void {}; | |
| 30 | +            $this->flusher = static function(): void {}; | |
| 31 | 31 | } | 
| 32 | 32 | } | 
| 33 | 33 | |
| @@ -102,8 +102,8 @@ | ||
| 102 | 102 |              ->setAllowedTypes('page', ['null', 'int']) | 
| 103 | 103 |              ->setAllowedTypes('page_size', ['null', 'int']) | 
| 104 | 104 |              ->setAllowedTypes('strict', ['null', 'bool']) | 
| 105 | -            ->setAllowedValues('page', static fn ($value) => null === $value || $value >= 1) | |
| 106 | -            ->setAllowedValues('page_size', static fn ($value) => null === $value || $value >= 1) | |
| 105 | +            ->setAllowedValues('page', static fn($value) => null === $value || $value >= 1) | |
| 106 | +            ->setAllowedValues('page_size', static fn($value) => null === $value || $value >= 1) | |
| 107 | 107 | ; | 
| 108 | 108 | } | 
| 109 | 109 | |
| @@ -9,7 +9,7 @@ | ||
| 9 | 9 | use Rector\Set\ValueObject\LevelSetList; | 
| 10 | 10 | use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator; | 
| 11 | 11 | |
| 12 | -return static function (ContainerConfigurator $containerConfigurator): void { | |
| 12 | +return static function(ContainerConfigurator $containerConfigurator): void { | |
| 13 | 13 | $services = $containerConfigurator->services(); | 
| 14 | 14 | $services->set(TypedPropertyRector::class); | 
| 15 | 15 | |
| @@ -25,7 +25,7 @@ | ||
| 25 | 25 |      { | 
| 26 | 26 | return [ | 
| 27 | 27 | LifecycleEvent::class => [ | 
| 28 | - ['onAuditEvent', -1_000_000], // should be fired last | |
| 28 | + ['onAuditEvent', -1_000_000], // should be fired last | |
| 29 | 29 | ], | 
| 30 | 30 | ]; | 
| 31 | 31 | } | 
| @@ -34,7 +34,7 @@ discard block | ||
| 34 | 34 | $this->configuration = $configuration; | 
| 35 | 35 | $this->transactionManager = new TransactionManager($this); | 
| 36 | 36 | |
| 37 | - \assert($this->configuration instanceof Configuration); // helps PHPStan | |
| 37 | + \assert($this->configuration instanceof Configuration); // helps PHPStan | |
| 38 | 38 | $this->configuration->setProvider($this); | 
| 39 | 39 | } | 
| 40 | 40 | |
| @@ -42,7 +42,7 @@ discard block | ||
| 42 | 42 |      { | 
| 43 | 43 | parent::registerAuditingService($service); | 
| 44 | 44 | |
| 45 | - \assert($service instanceof AuditingService); // helps PHPStan | |
| 45 | + \assert($service instanceof AuditingService); // helps PHPStan | |
| 46 | 46 | $entityManager = $service->getEntityManager(); | 
| 47 | 47 | $evm = $entityManager->getEventManager(); | 
| 48 | 48 | |
| @@ -61,7 +61,7 @@ discard block | ||
| 61 | 61 | public function getAuditingServiceForEntity(string $entity): AuditingServiceInterface | 
| 62 | 62 |      { | 
| 63 | 63 |          foreach ($this->auditingServices as $name => $service) { | 
| 64 | - \assert($service instanceof AuditingService); // helps PHPStan | |
| 64 | + \assert($service instanceof AuditingService); // helps PHPStan | |
| 65 | 65 | |
| 66 | 66 |              try { | 
| 67 | 67 | // entity is managed by the entity manager of this service | 
| @@ -79,7 +79,7 @@ discard block | ||
| 79 | 79 |      { | 
| 80 | 80 | $this->checkStorageMapper(); | 
| 81 | 81 | |
| 82 | - \assert($this->configuration instanceof Configuration); // helps PHPStan | |
| 82 | + \assert($this->configuration instanceof Configuration); // helps PHPStan | |
| 83 | 83 | $storageMapper = $this->configuration->getStorageMapper(); | 
| 84 | 84 | |
| 85 | 85 |          if (null === $storageMapper || 1 === \count($this->getStorageServices())) { | 
| @@ -87,7 +87,7 @@ discard block | ||
| 87 | 87 | return array_values($this->getStorageServices())[0]; | 
| 88 | 88 | } | 
| 89 | 89 | |
| 90 | - \assert(\is_callable($storageMapper)); // helps PHPStan | |
| 90 | + \assert(\is_callable($storageMapper)); // helps PHPStan | |
| 91 | 91 | |
| 92 | 92 | return $storageMapper($entity, $this->getStorageServices()); | 
| 93 | 93 | } | 
| @@ -145,7 +145,7 @@ discard block | ||
| 145 | 145 |      { | 
| 146 | 146 | $class = DoctrineHelper::getRealClassName($entity); | 
| 147 | 147 | // is $entity part of audited entities? | 
| 148 | - \assert($this->configuration instanceof Configuration); // helps PHPStan | |
| 148 | + \assert($this->configuration instanceof Configuration); // helps PHPStan | |
| 149 | 149 | |
| 150 | 150 | return !(!\array_key_exists($class, $this->configuration->getEntities())) | 
| 151 | 151 | // no => $entity is not audited | 
| @@ -196,7 +196,7 @@ discard block | ||
| 196 | 196 | public function isAuditedField($entity, string $field): bool | 
| 197 | 197 |      { | 
| 198 | 198 | // is $field is part of globally ignored columns? | 
| 199 | - \assert($this->configuration instanceof Configuration); // helps PHPStan | |
| 199 | + \assert($this->configuration instanceof Configuration); // helps PHPStan | |
| 200 | 200 |          if (\in_array($field, $this->configuration->getIgnoredColumns(), true)) { | 
| 201 | 201 | // yes => $field is not audited | 
| 202 | 202 | return false; | 
| @@ -236,13 +236,13 @@ discard block | ||
| 236 | 236 | |
| 237 | 237 | public function setStorageMapper(callable $storageMapper): void | 
| 238 | 238 |      { | 
| 239 | - \assert($this->configuration instanceof Configuration); // helps PHPStan | |
| 239 | + \assert($this->configuration instanceof Configuration); // helps PHPStan | |
| 240 | 240 | $this->configuration->setStorageMapper($storageMapper); | 
| 241 | 241 | } | 
| 242 | 242 | |
| 243 | 243 | public function loadAnnotations(EntityManagerInterface $entityManager, ?array $entities = null): self | 
| 244 | 244 |      { | 
| 245 | - \assert($this->configuration instanceof Configuration); // helps PHPStan | |
| 245 | + \assert($this->configuration instanceof Configuration); // helps PHPStan | |
| 246 | 246 | $annotationLoader = new AnnotationLoader($entityManager); | 
| 247 | 247 | $this->configuration->setEntities(array_merge( | 
| 248 | 248 | $entities ?? $this->configuration->getEntities(), | 
| @@ -254,7 +254,7 @@ discard block | ||
| 254 | 254 | |
| 255 | 255 | private function checkStorageMapper(): self | 
| 256 | 256 |      { | 
| 257 | - \assert($this->configuration instanceof Configuration); // helps PHPStan | |
| 257 | + \assert($this->configuration instanceof Configuration); // helps PHPStan | |
| 258 | 258 |          if (null === $this->configuration->getStorageMapper() && $this->isStorageMapperRequired()) { | 
| 259 | 259 |              throw new ProviderException('You must provide a mapper function to map audits to storage.'); | 
| 260 | 260 | } |