@@ -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 | |
@@ -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 | |
@@ -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 | } |
@@ -74,7 +74,7 @@ discard block |
||
| 74 | 74 | |
| 75 | 75 | switch ($type->getName()) { |
| 76 | 76 | case DoctrineHelper::getDoctrineType('BIGINT'): |
| 77 | - $convertedValue = (string) $value; // @phpstan-ignore-line |
|
| 77 | + $convertedValue = (string) $value; // @phpstan-ignore-line |
|
| 78 | 78 | |
| 79 | 79 | break; |
| 80 | 80 | |
@@ -96,7 +96,7 @@ discard block |
||
| 96 | 96 | case 'uuid': |
| 97 | 97 | case 'ulid': |
| 98 | 98 | // Ramsey UUID / Symfony UID (UUID/ULID) |
| 99 | - $convertedValue = (string) $value; // @phpstan-ignore-line |
|
| 99 | + $convertedValue = (string) $value; // @phpstan-ignore-line |
|
| 100 | 100 | |
| 101 | 101 | break; |
| 102 | 102 | |
@@ -159,7 +159,7 @@ |
||
| 159 | 159 | */ |
| 160 | 160 | public function getDiffs(bool $includeMedadata = false): ?array |
| 161 | 161 | { |
| 162 | - $diffs = $this->sort(json_decode($this->diffs, true, 512, JSON_THROW_ON_ERROR)); // @phpstan-ignore-line |
|
| 162 | + $diffs = $this->sort(json_decode($this->diffs, true, 512, JSON_THROW_ON_ERROR)); // @phpstan-ignore-line |
|
| 163 | 163 | if (!$includeMedadata) { |
| 164 | 164 | unset($diffs['@source']); |
| 165 | 165 | } |
@@ -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 | // no => $entity is not audited |
| 151 | 151 | return !(!\array_key_exists($class, $this->configuration->getEntities())); |
@@ -195,7 +195,7 @@ discard block |
||
| 195 | 195 | public function isAuditedField($entity, string $field): bool |
| 196 | 196 | { |
| 197 | 197 | // is $field is part of globally ignored columns? |
| 198 | - \assert($this->configuration instanceof Configuration); // helps PHPStan |
|
| 198 | + \assert($this->configuration instanceof Configuration); // helps PHPStan |
|
| 199 | 199 | if (\in_array($field, $this->configuration->getIgnoredColumns(), true)) { |
| 200 | 200 | // yes => $field is not audited |
| 201 | 201 | return false; |
@@ -233,13 +233,13 @@ discard block |
||
| 233 | 233 | |
| 234 | 234 | public function setStorageMapper(callable $storageMapper): void |
| 235 | 235 | { |
| 236 | - \assert($this->configuration instanceof Configuration); // helps PHPStan |
|
| 236 | + \assert($this->configuration instanceof Configuration); // helps PHPStan |
|
| 237 | 237 | $this->configuration->setStorageMapper($storageMapper); |
| 238 | 238 | } |
| 239 | 239 | |
| 240 | 240 | public function loadAnnotations(EntityManagerInterface $entityManager, ?array $entities = null): self |
| 241 | 241 | { |
| 242 | - \assert($this->configuration instanceof Configuration); // helps PHPStan |
|
| 242 | + \assert($this->configuration instanceof Configuration); // helps PHPStan |
|
| 243 | 243 | $annotationLoader = new AnnotationLoader($entityManager); |
| 244 | 244 | $this->configuration->setEntities(array_merge( |
| 245 | 245 | $entities ?? $this->configuration->getEntities(), |
@@ -251,7 +251,7 @@ discard block |
||
| 251 | 251 | |
| 252 | 252 | private function checkStorageMapper(): self |
| 253 | 253 | { |
| 254 | - \assert($this->configuration instanceof Configuration); // helps PHPStan |
|
| 254 | + \assert($this->configuration instanceof Configuration); // helps PHPStan |
|
| 255 | 255 | if (null === $this->configuration->getStorageMapper() && $this->isStorageMapperRequired()) { |
| 256 | 256 | throw new ProviderException('You must provide a mapper function to map audits to storage.'); |
| 257 | 257 | } |
@@ -43,7 +43,7 @@ discard block |
||
| 43 | 43 | |
| 44 | 44 | $driver = $entityManager->getConnection()->getDriver(); |
| 45 | 45 | if ($driver instanceof DHDriver) { |
| 46 | - $driver->addDHFlusher(function () use ($transaction): void { |
|
| 46 | + $driver->addDHFlusher(function() use ($transaction): void { |
|
| 47 | 47 | $this->transactionManager->process($transaction); |
| 48 | 48 | $transaction->reset(); |
| 49 | 49 | }); |
@@ -53,7 +53,7 @@ discard block |
||
| 53 | 53 | trigger_deprecation('damienharper/auditor', '2.2', 'SQLLogger is deprecated. Use DHMiddleware instead'); |
| 54 | 54 | // extend the SQL logger |
| 55 | 55 | $this->loggerBackup = $entityManager->getConnection()->getConfiguration()->getSQLLogger(); |
| 56 | - $auditLogger = new Logger(function () use ($entityManager, $transaction): void { |
|
| 56 | + $auditLogger = new Logger(function() use ($entityManager, $transaction): void { |
|
| 57 | 57 | // flushes pending data |
| 58 | 58 | $entityManager->getConnection()->getConfiguration()->setSQLLogger($this->loggerBackup); |
| 59 | 59 | $this->transactionManager->process($transaction); |