Completed
Pull Request — develop (#10)
by Narcotic
04:40 queued 01:47
created
src/Graviton/JsonSchemaBundle/Command/AbstractValidateCommand.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
     {
59 59
         $hasErrors = array_reduce(
60 60
             $this->loadDefinitions($input),
61
-            function ($hasErrors, SplFileInfo $fileInfo) use ($output) {
61
+            function($hasErrors, SplFileInfo $fileInfo) use ($output) {
62 62
                 $errors = $this->validateJsonDefinitionFile($fileInfo->getContents());
63 63
                 if (!empty($errors)) {
64 64
                     $hasErrors = true;
Please login to merge, or discard this patch.
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * AbstractValidateCommand class file
4
- */
3
+     * AbstractValidateCommand class file
4
+     */
5 5
 
6 6
 namespace Graviton\JsonSchemaBundle\Command;
7 7
 
Please login to merge, or discard this patch.
src/Graviton/JsonSchemaBundle/Command/ValidateDirectoryCommand.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * ValidateDirectoryCommand class file
4
- */
3
+     * ValidateDirectoryCommand class file
4
+     */
5 5
 
6 6
 namespace Graviton\JsonSchemaBundle\Command;
7 7
 
Please login to merge, or discard this patch.
src/Graviton/JsonSchemaBundle/Command/ValidateFileCommand.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * ValidateFileCommand class file
4
- */
3
+     * ValidateFileCommand class file
4
+     */
5 5
 
6 6
 namespace Graviton\JsonSchemaBundle\Command;
7 7
 
Please login to merge, or discard this patch.
JsonSchemaBundle/DependencyInjection/GravitonJsonSchemaExtension.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * GravitonJsonSchemaExtension class file
4
- */
3
+     * GravitonJsonSchemaExtension class file
4
+     */
5 5
 
6 6
 namespace Graviton\JsonSchemaBundle\DependencyInjection;
7 7
 
Please login to merge, or discard this patch.
src/Graviton/JsonSchemaBundle/GravitonJsonSchemaBundle.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * GravitonJsonSchemaBundle class file
4
- */
3
+     * GravitonJsonSchemaBundle class file
4
+     */
5 5
 
6 6
 namespace Graviton\JsonSchemaBundle;
7 7
 
Please login to merge, or discard this patch.
src/Graviton/JsonSchemaBundle/Schema/RefResolver.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * RefResolver class file
4
- */
3
+     * RefResolver class file
4
+     */
5 5
 
6 6
 namespace Graviton\JsonSchemaBundle\Schema;
7 7
 
Please login to merge, or discard this patch.
src/Graviton/JsonSchemaBundle/Schema/SchemaFactory.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * SchemaFactory class file
4
- */
3
+     * SchemaFactory class file
4
+     */
5 5
 namespace Graviton\JsonSchemaBundle\Schema;
6 6
 
7 7
 use JsonSchema\RefResolver;
Please login to merge, or discard this patch.
src/Graviton/JsonSchemaBundle/Tests/Schema/SchemaFactoryTest.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * SchemaFactoryTest class file
4
- */
3
+     * SchemaFactoryTest class file
4
+     */
5 5
 
6 6
 namespace Graviton\JsonSchemaBundle\Tests\Schema;
7 7
 
Please login to merge, or discard this patch.
src/Graviton/JsonSchemaBundle/Tests/Validator/ValidatorTest.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * ValidatorTest class file
4
- */
3
+     * ValidatorTest class file
4
+     */
5 5
 
6 6
 namespace Graviton\JsonSchemaBundle\Tests\Validator;
7 7
 
Please login to merge, or discard this patch.