Completed
Push — fix-qinst ( d8e76d )
by Julien
13:12
created
lib/SSpkS/Package/Package.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -223,7 +223,7 @@
 block discarded – undo
223 223
      * Returns a list of thumbnails for the specified package.
224 224
      *
225 225
      * @param string $pathPrefix Prefix to put before file path
226
-     * @return array List of thumbnail urls
226
+     * @return boolean List of thumbnail urls
227 227
      */
228 228
     public function hasWizardFile($pathPrefix = '')
229 229
     {
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -161,10 +161,10 @@
 block discarded – undo
161 161
 
162 162
         $this->metadata['thumbnail'] = $this->getThumbnails();
163 163
         $this->metadata['snapshot']  = $this->getSnapshots();
164
-        $qValues = $this->hasWizardFile() ? false : true;
165
-        $this->metadata['qinst']  = $qValues;
164
+        $qValues = $this->hasWizardFile()? false : true;
165
+        $this->metadata['qinst'] = $qValues;
166 166
         $this->metadata['qupgrade']  = $qValues;
167
-        $this->metadata['qstart']  = $qValues;
167
+        $this->metadata['qstart'] = $qValues;
168 168
     }
169 169
 
170 170
     /**
Please login to merge, or discard this patch.