@@ -23,7 +23,7 @@ |
||
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 |
@@ -27,7 +27,7 @@ |
||
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( |
@@ -27,7 +27,7 @@ |
||
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( |