@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | $guid = ''; |
38 | 38 | |
39 | 39 | if ($idOpt !== null && $idOpt !== '') { |
40 | - if (! ctype_digit((string) $idOpt)) { |
|
40 | + if (!ctype_digit((string) $idOpt)) { |
|
41 | 41 | $this->error('Release ID must be numeric.'); |
42 | 42 | |
43 | 43 | return 5; // invalid id format |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | $processor = new ProcessAdditional; |
84 | 84 | $ok = $processor->processSingleGuid($guid); |
85 | 85 | |
86 | - if (! $ok) { |
|
86 | + if (!$ok) { |
|
87 | 87 | $this->error('Processing failed or nothing processed for '.($idOpt ? 'ID '.$idOpt : 'GUID '.$guid).'.'); |
88 | 88 | |
89 | 89 | return 3; |