Completed
Push — master ( a01edc...696f4b )
by Ron
02:45
created
src/Builder/QueryStatement.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
 	 */
60 60
 	public function fetchAll($fetchStyle = PDO::FETCH_ASSOC, $fetchArgument = null, array $ctorArgs = []) {
61 61
 		return $this->exceptionHandler(function() use ($fetchStyle, $fetchArgument, $ctorArgs) {
62
-			if($fetchArgument !== null) {
62
+			if ($fetchArgument !== null) {
63 63
 				return $this->statement->fetchAll($fetchStyle, $fetchArgument, $ctorArgs);
64 64
 			}
65 65
 			return $this->statement->fetchAll($fetchStyle);
Please login to merge, or discard this patch.