Passed
Pull Request — master (#124)
by
unknown
02:32
created
src/Provider/Doctrine/Persistence/Command/UpdateSchemaCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Provider/Doctrine/Auditing/Event/DoctrineSubscriber.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.
src/Provider/Doctrine/Persistence/Event/CreateSchemaListener.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Provider/Doctrine/Auditing/Logger/Logger.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
rector.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/EventSubscriber/AuditEventSubscriber.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
src/Provider/Doctrine/Auditing/Transaction/AuditTrait.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Model/Entry.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -159,7 +159,7 @@
 block discarded – undo
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
         }
Please login to merge, or discard this patch.
src/Provider/Doctrine/DoctrineProvider.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
         }
Please login to merge, or discard this patch.