Passed
Pull Request — master (#11)
by
unknown
23:16
created
rector.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -6,8 +6,8 @@
 block discarded – undo
6 6
 
7 7
 return RectorConfig::configure()
8 8
     ->withPaths([
9
-        __DIR__ . '/src',
10
-        __DIR__ . '/tests',
9
+        __DIR__.'/src',
10
+        __DIR__.'/tests',
11 11
     ])
12 12
     ->withPhpSets(
13 13
         php83: true
Please login to merge, or discard this patch.
src/Validator/SchemaValidator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
      * @param Attribute[] $attributes
54 54
      * @param string      $parentPath
55 55
      */
56
-    private function validateByAttributes(array $object, $schemaId, $attributes, array $ignoreAttributes, ValidationResult $validationResult, int|string|null $parentPath): void
56
+    private function validateByAttributes(array $object, $schemaId, $attributes, array $ignoreAttributes, ValidationResult $validationResult, int | string | null $parentPath): void
57 57
     {
58 58
         foreach ($object as $propertyName => $value) {
59 59
             if ((0 === $parentPath || ('' === $parentPath || '0' === $parentPath) || null === $parentPath) && isset(self::$commonAttributes[$propertyName])) {
Please login to merge, or discard this patch.