Completed
Push — master ( 85853a...5df06c )
by James
20s queued 12s
created
src/DetectChanges/BCBreak/InterfaceBased/AncestorRemoved.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
             array_diff($fromInterface->getInterfaceNames(), $toInterface->getInterfaceNames())
24 24
         );
25 25
 
26
-        if (! $removedAncestors) {
26
+        if (!$removedAncestors) {
27 27
             return Changes::empty();
28 28
         }
29 29
 
Please login to merge, or discard this patch.
src/DetectChanges/BCBreak/FunctionBased/FunctionBecameInternal.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
     public function __invoke(ReflectionFunctionAbstract $fromFunction, ReflectionFunctionAbstract $toFunction) : Changes
28 28
     {
29 29
         if ($this->isInternalDocComment($toFunction->getDocComment())
30
-            && ! $this->isInternalDocComment($fromFunction->getDocComment())
30
+            && !$this->isInternalDocComment($fromFunction->getDocComment())
31 31
         ) {
32 32
             return Changes::fromList(Change::changed(
33 33
                 sprintf(
Please login to merge, or discard this patch.
src/DetectChanges/BCBreak/PropertyBased/PropertyBecameInternal.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
     public function __invoke(ReflectionProperty $fromProperty, ReflectionProperty $toProperty) : Changes
28 28
     {
29 29
         if ($this->isInternalDocComment($toProperty->getDocComment())
30
-            && ! $this->isInternalDocComment($fromProperty->getDocComment())
30
+            && !$this->isInternalDocComment($fromProperty->getDocComment())
31 31
         ) {
32 32
             return Changes::fromList(Change::changed(
33 33
                 sprintf(
Please login to merge, or discard this patch.