Passed
Branch master (f2d7db)
by Martin
02:28
created
src/Schema.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -23,10 +23,10 @@
 block discarded – undo
23 23
         return self::make(json_decode(file_get_contents($path)));
24 24
     }
25 25
 
26
-	/**
27
-	 * @param object $json
28
-	 * @return mixed
29
-	 */
26
+    /**
27
+     * @param object $json
28
+     * @return mixed
29
+     */
30 30
     public static function make($json)
31 31
     {
32 32
         if (!isset($json->type)) {
Please login to merge, or discard this patch.
example/schema.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
 foreach ($schema->properties() as $name => $schema) {
12 12
     echo " - $name ", $schema->phpType(), "\n";
13 13
     if ($schema->isArray()) {
14
-    	/** @var Schema\ArraySchema $schema */
14
+        /** @var Schema\ArraySchema $schema */
15 15
         if ($schema->items()->isObject()) {
16 16
             foreach ($schema->items()->properties() as $innerName => $innerSchema) {
17 17
                 echo "   - $name ", $schema->phpType(), "\n";
Please login to merge, or discard this patch.