Test Failed
Push — master ( 4527f5...6e7815 )
by Ylva
21:41 queued 04:42
created
a/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Var_.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@
 block discarded – undo
111 111
             $variableName = '';
112 112
         }
113 113
 
114
-        $type = (string) $this->type;
114
+        $type = (string)$this->type;
115 115
 
116 116
         return $type
117 117
             . ($variableName !== '' ? ($type !== '' ? ' ' : '') . $variableName : '')
Please login to merge, or discard this patch.
a/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Covers.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@
 block discarded – undo
93 93
             $description = '';
94 94
         }
95 95
 
96
-        $refers = (string) $this->refers;
96
+        $refers = (string)$this->refers;
97 97
 
98 98
         return $refers . ($description !== '' ? ($refers !== '' ? ' ' : '') . $description : '');
99 99
     }
Please login to merge, or discard this patch.
a/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Since.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -95,7 +95,7 @@
 block discarded – undo
95 95
             $description = '';
96 96
         }
97 97
 
98
-        $version = (string) $this->version;
98
+        $version = (string)$this->version;
99 99
 
100 100
         return $version . ($description !== '' ? ($version !== '' ? ' ' : '') . $description : '');
101 101
     }
Please login to merge, or discard this patch.
a/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Param.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
         $parts        = Utils::pregSplit('/(\s+)/Su', $body, 2, PREG_SPLIT_DELIM_CAPTURE);
73 73
         $variableName = '';
74 74
         $isVariadic   = false;
75
-        $isReference   = false;
75
+        $isReference = false;
76 76
 
77 77
         // if the first item that is encountered is not a variable; it is a type
78 78
         if ($firstPart && !self::strStartsWithVariable($firstPart)) {
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
             $variableName .= '$' . $this->variableName;
153 153
         }
154 154
 
155
-        $type = (string) $this->type;
155
+        $type = (string)$this->type;
156 156
 
157 157
         return $type
158 158
             . ($variableName !== '' ? ($type !== '' ? ' ' : '') . $variableName : '')
Please login to merge, or discard this patch.
phpdocumentor/reflection-docblock/src/DocBlock/Tags/Reference/Fqsen.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,6 +33,6 @@
 block discarded – undo
33 33
      */
34 34
     public function __toString() : string
35 35
     {
36
-        return (string) $this->fqsen;
36
+        return (string)$this->fqsen;
37 37
     }
38 38
 }
Please login to merge, or discard this patch.
a/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Throws.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
             $description = '';
58 58
         }
59 59
 
60
-        $type = (string) $this->type;
60
+        $type = (string)$this->type;
61 61
 
62 62
         return $type . ($description !== '' ? ($type !== '' ? ' ' : '') . $description : '');
63 63
     }
Please login to merge, or discard this patch.
a/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Author.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@
 block discarded – undo
77 77
             $authorEmail = '';
78 78
         }
79 79
 
80
-        $authorName = (string) $this->authorName;
80
+        $authorName = (string)$this->authorName;
81 81
 
82 82
         return $authorName . ($authorEmail !== '' ? ($authorName !== '' ? ' ' : '') . $authorEmail : '');
83 83
     }
Please login to merge, or discard this patch.
a/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/InvalidTag.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@
 block discarded – undo
85 85
             $trace = $exception->getTrace();
86 86
             if (isset($trace[0]['args'])) {
87 87
                 $trace = array_map(
88
-                    function (array $call) : array {
88
+                    function(array $call) : array {
89 89
                         $call['args'] = array_map([$this, 'flattenArguments'], $call['args']);
90 90
 
91 91
                         return $call;
Please login to merge, or discard this patch.
a/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Example.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -111,9 +111,9 @@  discard block
 block discarded – undo
111 111
 
112 112
             // Starting line / Number of lines / Description
113 113
             if (preg_match('/^([1-9]\d*)(?:\s+((?1))\s*)?(.*)$/sux', $matches[3], $contentMatches)) {
114
-                $startingLine = (int) $contentMatches[1];
114
+                $startingLine = (int)$contentMatches[1];
115 115
                 if (isset($contentMatches[2])) {
116
-                    $lineCount = (int) $contentMatches[2];
116
+                    $lineCount = (int)$contentMatches[2];
117 117
                 }
118 118
 
119 119
                 if (array_key_exists(3, $contentMatches)) {
@@ -147,11 +147,11 @@  discard block
 block discarded – undo
147 147
      */
148 148
     public function __toString() : string
149 149
     {
150
-        $filePath = (string) $this->filePath;
150
+        $filePath = (string)$this->filePath;
151 151
         $isDefaultLine = $this->startingLine === 1 && $this->lineCount === 0;
152
-        $startingLine = !$isDefaultLine ? (string) $this->startingLine : '';
153
-        $lineCount = !$isDefaultLine ? (string) $this->lineCount : '';
154
-        $content = (string) $this->content;
152
+        $startingLine = !$isDefaultLine ? (string)$this->startingLine : '';
153
+        $lineCount = !$isDefaultLine ? (string)$this->lineCount : '';
154
+        $content = (string)$this->content;
155 155
 
156 156
         return $filePath
157 157
             . ($startingLine !== ''
Please login to merge, or discard this patch.