Completed
Push — develop ( 862f1c...8e6bb3 )
by Lucas
8s
created
src/Command/CorePurgeCommand.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
- * drops all collections in a given mongodb database
4
- */
3
+     * drops all collections in a given mongodb database
4
+     */
5 5
 
6 6
 namespace Graviton\ImportExport\Command;
7 7
 
Please login to merge, or discard this patch.
src/Command/ImportCommand.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -1,11 +1,11 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * import json data into graviton
4
- *
5
- * Supports importing json data from either a single file or a complete folder of files.
6
- *
7
- * The data needs to contain frontmatter to hint where the bits and pieces should go.
8
- */
3
+     * import json data into graviton
4
+     *
5
+     * Supports importing json data from either a single file or a complete folder of files.
6
+     *
7
+     * The data needs to contain frontmatter to hint where the bits and pieces should go.
8
+     */
9 9
 
10 10
 namespace Graviton\ImportExport\Command;
11 11
 
Please login to merge, or discard this patch.
src/Command/ImportCommandAbstract.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * base abstract for import based commands where a bunch of file must be collected and
4
- * done something with them..
5
- */
3
+     * base abstract for import based commands where a bunch of file must be collected and
4
+     * done something with them..
5
+     */
6 6
 
7 7
 namespace Graviton\ImportExport\Command;
8 8
 
Please login to merge, or discard this patch.
src/Util/MongoCredentialsProvider.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
- * small helper to read our VCAP_SERVICES in cf
4
- */
3
+     * small helper to read our VCAP_SERVICES in cf
4
+     */
5 5
 
6 6
 namespace Graviton\ImportExport\Util;
7 7
 
Please login to merge, or discard this patch.
test/Command/CoreExportCommandTest.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
- * check core export command
4
- */
3
+     * check core export command
4
+     */
5 5
 
6 6
 namespace Graviton\ImportExport\Tests\Command;
7 7
 
Please login to merge, or discard this patch.
test/Command/CoreImportCommandTest.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
- * check core import command
4
- */
3
+     * check core import command
4
+     */
5 5
 
6 6
 namespace Graviton\ImportExport\Tests\Command;
7 7
 
Please login to merge, or discard this patch.
test/Command/CorePurgeCommandTest.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
- * check core purge command
4
- */
3
+     * check core purge command
4
+     */
5 5
 
6 6
 namespace Graviton\ImportExport\Tests\Command;
7 7
 
Please login to merge, or discard this patch.
test/Command/ImportCommandTest.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
- * check import command
4
- */
3
+     * check import command
4
+     */
5 5
 
6 6
 namespace Graviton\ImportExport\Tests\Command;
7 7
 
Please login to merge, or discard this patch.
test/Util/JsonSerializerTest.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
- * test our jsonserializer extension
4
- */
3
+     * test our jsonserializer extension
4
+     */
5 5
 
6 6
 namespace Graviton\ImportExport\Tests\Command;
7 7
 
Please login to merge, or discard this patch.