Passed
Push — pac-89--debug-report ( 27cccb...b8ce55 )
by Tim
03:29
created
src/Plugins/DebugCreatePlugin.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -112,11 +112,11 @@
 block discarded – undo
112 112
 
113 113
         // load the ZIP artefacts from the archive directory
114 114
         foreach (glob(sprintf('%s/*.zip', $archiveDir)) as $possibleArtefact) {
115
-            $availableSerials[ basename($possibleArtefact, '.zip')] = filemtime($possibleArtefact);
115
+            $availableSerials[basename($possibleArtefact, '.zip')] = filemtime($possibleArtefact);
116 116
         }
117 117
 
118 118
         // sort the available serials
119
-        uasort($availableSerials, function ($a, $b) {
119
+        uasort($availableSerials, function($a, $b) {
120 120
             // return zero, if the passed values are equal
121 121
             if ($a == $b) {
122 122
                 return 0;
Please login to merge, or discard this patch.
src/Plugins/DebugSendPlugin.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -130,7 +130,7 @@
 block discarded – undo
130 130
             // if at least one recipient has been accepted
131 131
             if ($recipientsAccepted > 0) {
132 132
                 // cast 'to' into an array if not already
133
-                is_array($recipient) ? : $recipient = (array) $recipient;
133
+                is_array($recipient) ?: $recipient = (array) $recipient;
134 134
                 // remove the NOT accepted recipients
135 135
                 $acceptedRecipients = array_diff($recipient, $failedRecipients);
136 136
 
Please login to merge, or discard this patch.