Completed
Push — develop ( ba8b80...a6b652 )
by Paul
08:46
created
src/PHPUnitGenerator/Model/AnnotationBaseModel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
         $this->methodName = lcfirst($methodName);
60 60
 
61 61
         if (preg_match(self::CONTENT_REGEX, $content, $matches) > 0) {
62
-            $this->expected  = ! isset($matches[1])
62
+            $this->expected  = !isset($matches[1])
63 63
             || (empty($matches[1]) && $matches[1] !== "0" && $matches[1] !== 0) ?
64 64
                 null : $matches[1];
65 65
             $this->arguments = $matches[4] ?? null;
Please login to merge, or discard this patch.