Completed
Push — master ( dd90a8...62fb38 )
by Ori
03:45
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/Utils.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
 
32 32
     public static function removeDir($path)
33 33
     {
34
-        $files = glob($path . '/*');
34
+        $files = glob($path.'/*');
35 35
         foreach ($files as $file) {
36 36
             is_dir($file) ? Utils::removeDir($file) : unlink($file);
37 37
         }
Please login to merge, or discard this patch.