Completed
Pull Request — master (#1303)
by Ayrton
04:48
created
src/Annotation/SerializedName.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
 
31 31
     public function __construct(array $values)
32 32
     {
33
-        if (!isset($values['value']) || !\is_string($values['value'])) {
33
+        if ( ! isset($values['value']) || ! \is_string($values['value'])) {
34 34
             throw new RuntimeException(sprintf('"value" must be a string.'));
35 35
         }
36 36
 
Please login to merge, or discard this patch.
src/EventDispatcher/Subscriber/SymfonyValidatorValidatorSubscriber.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
         $validator = $this->validator;
54 54
         $groups = $context->hasAttribute('validation_groups') ? $context->getAttribute('validation_groups') : null;
55 55
 
56
-        if (!$groups) {
56
+        if ( ! $groups) {
57 57
             return;
58 58
         }
59 59
 
Please login to merge, or discard this patch.
src/Visitor/Factory/XmlDeserializationVisitorFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
 
41 41
     public function enableExternalEntities(bool $enable = true): self
42 42
     {
43
-        $this->disableExternalEntities = !$enable;
43
+        $this->disableExternalEntities = ! $enable;
44 44
         return $this;
45 45
     }
46 46
 
Please login to merge, or discard this patch.
src/Builder/CallbackDriverFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
     public function createDriver(array $metadataDirs, Reader $reader): DriverInterface
24 24
     {
25 25
         $driver = \call_user_func($this->callback, $metadataDirs, $reader);
26
-        if (!$driver instanceof DriverInterface) {
26
+        if ( ! $driver instanceof DriverInterface) {
27 27
             throw new LogicException('The callback must return an instance of DriverInterface.');
28 28
         }
29 29
 
Please login to merge, or discard this patch.
src/Ordering/CustomPropertyOrderingStrategy.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -40,19 +40,19 @@
 block discarded – undo
40 40
     {
41 41
         $currentSorting = $properties ? array_combine(array_keys($properties), range(1, \count($properties))) : [];
42 42
 
43
-        uksort($properties, function ($a, $b) use ($currentSorting) {
43
+        uksort($properties, function($a, $b) use ($currentSorting) {
44 44
             $existsA = isset($this->ordering[$a]);
45 45
             $existsB = isset($this->ordering[$b]);
46 46
 
47
-            if (!$existsA && !$existsB) {
47
+            if ( ! $existsA && ! $existsB) {
48 48
                 return $currentSorting[$a] - $currentSorting[$b];
49 49
             }
50 50
 
51
-            if (!$existsA) {
51
+            if ( ! $existsA) {
52 52
                 return 1;
53 53
             }
54 54
 
55
-            if (!$existsB) {
55
+            if ( ! $existsB) {
56 56
                 return -1;
57 57
             }
58 58
 
Please login to merge, or discard this patch.
src/JsonSerializationVisitor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@
 block discarded – undo
79 79
 
80 80
         $rs = isset($type['params'][1]) ? new \ArrayObject() : [];
81 81
 
82
-        $isList = isset($type['params'][0]) && !isset($type['params'][1]);
82
+        $isList = isset($type['params'][0]) && ! isset($type['params'][1]);
83 83
 
84 84
         $elType = $this->getElementType($type);
85 85
         foreach ($data as $k => $v) {
Please login to merge, or discard this patch.
src/Handler/ConstraintViolationHandler.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
                     'direction' => GraphNavigatorInterface::DIRECTION_SERIALIZATION,
27 27
                     'type' => $type,
28 28
                     'format' => $format,
29
-                    'method' => $method . 'To' . $format,
29
+                    'method' => $method.'To'.$format,
30 30
                 ];
31 31
             }
32 32
         }
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
     public function serializeListToXml(XmlSerializationVisitor $visitor, ConstraintViolationList $list, array $type): void
38 38
     {
39 39
         $currentNode = $visitor->getCurrentNode();
40
-        if (!$currentNode) {
40
+        if ( ! $currentNode) {
41 41
             $visitor->createRoot();
42 42
         }
43 43
 
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
         $violationNode = $visitor->getDocument()->createElement('violation');
57 57
 
58 58
         $parent = $visitor->getCurrentNode();
59
-        if (!$parent) {
59
+        if ( ! $parent) {
60 60
             $visitor->setCurrentAndRootNode($violationNode);
61 61
         } else {
62 62
             $parent->appendChild($violationNode);
Please login to merge, or discard this patch.
src/Ordering/AlphabeticalPropertyOrderingStrategy.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
     {
16 16
         uasort(
17 17
             $properties,
18
-            static function (PropertyMetadata $a, PropertyMetadata $b): int {
18
+            static function(PropertyMetadata $a, PropertyMetadata $b): int {
19 19
                 return strcmp($a->name, $b->name);
20 20
             }
21 21
         );
Please login to merge, or discard this patch.
src/EventDispatcher/LazyEventDispatcher.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
      */
21 21
     public function __construct($container)
22 22
     {
23
-        if (!$container instanceof PsrContainerInterface && !$container instanceof ContainerInterface) {
23
+        if ( ! $container instanceof PsrContainerInterface && ! $container instanceof ContainerInterface) {
24 24
             throw new InvalidArgumentException(sprintf('The container must be an instance of %s or %s (%s given).', PsrContainerInterface::class, ContainerInterface::class, \is_object($container) ? \get_class($container) : \gettype($container)));
25 25
         }
26 26
 
@@ -35,11 +35,11 @@  discard block
 block discarded – undo
35 35
         $listeners = parent::initializeListeners($eventName, $loweredClass, $format);
36 36
 
37 37
         foreach ($listeners as &$listener) {
38
-            if (!\is_array($listener[0]) || !\is_string($listener[0][0])) {
38
+            if ( ! \is_array($listener[0]) || ! \is_string($listener[0][0])) {
39 39
                 continue;
40 40
             }
41 41
 
42
-            if (!$this->container->has($listener[0][0])) {
42
+            if ( ! $this->container->has($listener[0][0])) {
43 43
                 continue;
44 44
             }
45 45
 
Please login to merge, or discard this patch.