Passed
Pull Request — master (#146)
by
unknown
03:18
created
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.