Passed
Push — testing ( d73215...6eb735 )
by Stephan
04:58
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
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
 	/**
48 48
 	 * @param $targetConfiguration
49 49
 	 */
50
-	public function registerEarlyConfiguration( &$targetConfiguration ){
50
+	public function registerEarlyConfiguration( &$targetConfiguration ) {
51 51
 		$sourceConfiguration = $this->getEarlyConfiguration();
52 52
 		$this->mergeConfiguration( $sourceConfiguration, $targetConfiguration );
53 53
 	}
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
 	/**
56 56
 	 * @param $targetConfiguration
57 57
 	 */
58
-	public function registerLateConfiguration( &$targetConfiguration ){
58
+	public function registerLateConfiguration( &$targetConfiguration ) {
59 59
 		$sourceConfiguration = $this->getLateConfiguration();
60 60
 		$this->mergeConfiguration( $sourceConfiguration, $targetConfiguration );
61 61
 	}
Please login to merge, or discard this patch.