Completed
Push — master ( de76a7...7811d3 )
by Maxence
02:17 queued 14s
created
lib/Command/DocumentStatus.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -128,14 +128,14 @@  discard block
 block discarded – undo
128 128
 
129 129
 
130 130
 		if ($json) {
131
-			echo json_encode($index, JSON_PRETTY_PRINT) . "\n";
131
+			echo json_encode($index, JSON_PRETTY_PRINT)."\n";
132 132
 
133 133
 			return;
134 134
 		}
135 135
 
136 136
 		$status = $this->statusConvertToString($index->getStatus());
137 137
 		$desc = $this->statusAvailable[$status];
138
-		$output->writeln('current status: <info>' . $status . '</info> (' . $desc . ')');
138
+		$output->writeln('current status: <info>'.$status.'</info> ('.$desc.')');
139 139
 	}
140 140
 
141 141
 
@@ -194,7 +194,7 @@  discard block
 block discarded – undo
194 194
 				return IIndex::INDEX_FAILED;
195 195
 		}
196 196
 
197
-		throw new Exception("Specify a valid status: " . implode(', ', array_keys($this->statusAvailable)));
197
+		throw new Exception("Specify a valid status: ".implode(', ', array_keys($this->statusAvailable)));
198 198
 	}
199 199
 
200 200
 }
Please login to merge, or discard this patch.