Completed
Push — master ( d9e007...48e73f )
by
unknown
20s queued 11s
created
src/Validators/BaseValidator.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace frictionlessdata\datapackage\Validators;
4 4
 
5
-use frictionlessdata\datapackage\Registry;
6 5
 use frictionlessdata\datapackage\Utils;
7 6
 use frictionlessdata\tableschema\SchemaValidator;
8 7
 use frictionlessdata\tableschema\SchemaValidationError;
Please login to merge, or discard this patch.
src/Datapackages/BaseDatapackage.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -215,14 +215,14 @@
 block discarded – undo
215 215
     protected $basePath;
216 216
     protected $skipValidations = false;
217 217
 
218
-  /**
219
-   * called by the resources iterator for each iteration.
220
-   *
221
-   * @param object $descriptor
222
-   *
223
-   * @return \frictionlessdata\datapackage\Resources\BaseResource
224
-   * @throws \frictionlessdata\datapackage\Exceptions\ResourceValidationFailedException
225
-   */
218
+    /**
219
+     * called by the resources iterator for each iteration.
220
+     *
221
+     * @param object $descriptor
222
+     *
223
+     * @return \frictionlessdata\datapackage\Resources\BaseResource
224
+     * @throws \frictionlessdata\datapackage\Exceptions\ResourceValidationFailedException
225
+     */
226 226
     protected function initResource($descriptor)
227 227
     {
228 228
         return Factory::resource($descriptor, $this->basePath, $this->skipValidations);
Please login to merge, or discard this patch.