Completed
Push — master ( 428d1d...252540 )
by Jeroen De
16s queued 12s
created
tests/phpunit/Unit/ApiSemanticFormsSelectRequestProcessorTest.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
 	) {
67 67
 
68 68
 		$parameters = [ 'approach' => 'smw', 'query' => 'foo, baa, gaah',
69
-		                     'sep'      => ',' ];
69
+							 'sep'      => ',' ];
70 70
 
71 71
 		$this->assertInternalType(
72 72
 			'object',
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
 	public function testSetDebugFlag_doProcessQueryFor() {
92 92
 		$this->ApiSFSRP->setDebugFlag( true );
93 93
 		$parameters = [ 'approach' => 'smw', 'query' => 'my Query,query2',
94
-		                     'sep'      => ',' ];
94
+							 'sep'      => ',' ];
95 95
 
96 96
 		$this->assertInternalType(
97 97
 			'object',
Please login to merge, or discard this patch.
tests/phpunit/Unit/SemanticFormsSelectInputTest.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
 		$isDisabled = false;
27 27
 
28 28
 		$otherArgs = [ 'template' => 'Foo', 'field' => '',
29
-		                    'function' => 'Bar', 'is_list' => true ];
29
+							'function' => 'Bar', 'is_list' => true ];
30 30
 
31 31
 		$parserOutput = $this->getMockBuilder( '\ParserOutput' )
32 32
 			->disableOriginalConstructor()->getMock();
Please login to merge, or discard this patch.
tests/phpunit/Unit/ApiSemanticFormsSelectTest.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
 	protected function setUp() {
26 26
 		parent::setUp();
27 27
 		$parameters = [ 'action' => 'sformsselect', 'approach' => 'smw',
28
-		                     'query'  => 'abc', 'sep' => ',' ];
28
+							 'query'  => 'abc', 'sep' => ',' ];
29 29
 
30 30
 		$this->ApiMain = new ApiMain(
31 31
 			$this->newRequestContext( $parameters ), true
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
 
70 70
 	public function testGetParamDescription() {
71 71
 		$tdata = [ 'approach' => 'The actual approach: function or smw',
72
-		                'query'    => 'The query of the former' ];
72
+						'query'    => 'The query of the former' ];
73 73
 		$this->assertEquals( $this->ApiSFS->getParamDescription(), $tdata );
74 74
 	}
75 75
 
Please login to merge, or discard this patch.