Passed
Push — master ( 52a6ef...7edf20 )
by Jeroen De
08:31 queued 11s
created
tests/phpunit/SimpleBatchUploadTest.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -97,8 +97,8 @@
 block discarded – undo
97 97
 	}
98 98
 
99 99
 		/**
100
-	 * @param $configuration
101
-	 */
100
+		 * @param $configuration
101
+		 */
102 102
 	public function assertEarlyConfiguration( $configuration ) {
103 103
 
104 104
 		//$configuration[ 'wgExtensionMessagesFiles' ][ 'SimpleBatchUploadAlias' ] = __DIR__ . '/SimpleBatchUpload.alias.php';
Please login to merge, or discard this patch.
src/SimpleBatchUpload.php 1 patch
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,12 +42,12 @@
 block discarded – undo
42 42
 		$simpleBatchUpload->registerEarlyConfiguration( $GLOBALS );
43 43
 	}
44 44
 
45
-	public function registerEarlyConfiguration( &$targetConfiguration ){
45
+	public function registerEarlyConfiguration( &$targetConfiguration ) {
46 46
 		$sourceConfiguration = $this->getEarlyConfiguration();
47 47
 		$this->mergeConfiguration( $sourceConfiguration, $targetConfiguration );
48 48
 	}
49 49
 
50
-	public function registerLateConfiguration( &$targetConfiguration ){
50
+	public function registerLateConfiguration( &$targetConfiguration ) {
51 51
 		$sourceConfiguration = $this->getLateConfiguration();
52 52
 		$this->mergeConfiguration( $sourceConfiguration, $targetConfiguration );
53 53
 	}
Please login to merge, or discard this patch.