Completed
Pull Request — master (#51)
by
unknown
01:35
created
src/Resources/BaseResource.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -251,6 +251,9 @@
 block discarded – undo
251 251
 
252 252
     abstract protected function getInlineDataStream($data);
253 253
 
254
+    /**
255
+     * @param string $profile
256
+     */
254 257
     protected static function handlesProfile($profile)
255 258
     {
256 259
         return false;
Please login to merge, or discard this patch.
src/Datapackages/BaseDatapackage.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -192,7 +192,9 @@
 block discarded – undo
192 192
         ];
193 193
         $ri = 0;
194 194
         foreach ($packageCopy as $resource) {
195
-            if ($resource->isRemote()) continue;
195
+            if ($resource->isRemote()) {
196
+                continue;
197
+            }
196 198
 
197 199
             $resourceFiles = [];
198 200
             $fileNames = $resource->save($base.'resource-'.$ri);
Please login to merge, or discard this patch.