Passed
Push — master ( 47e37b...2360ce )
by Aimeos
05:11
created
lib/mshoplib/setup/default/schema/locale.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
 return array(
10 10
 	'table' => array(
11 11
 
12
-		'mshop_locale_site' => function ( \Doctrine\DBAL\Schema\Schema $schema ) {
12
+		'mshop_locale_site' => function( \Doctrine\DBAL\Schema\Schema $schema ) {
13 13
 
14 14
 			$table = $schema->createTable( 'mshop_locale_site' );
15 15
 
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
 			return $schema;
35 35
 		},
36 36
 
37
-		'mshop_locale_language' => function ( \Doctrine\DBAL\Schema\Schema $schema ) {
37
+		'mshop_locale_language' => function( \Doctrine\DBAL\Schema\Schema $schema ) {
38 38
 
39 39
 			$table = $schema->createTable( 'mshop_locale_language' );
40 40
 
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
 			return $schema;
57 57
 		},
58 58
 
59
-		'mshop_locale_currency' => function ( \Doctrine\DBAL\Schema\Schema $schema ) {
59
+		'mshop_locale_currency' => function( \Doctrine\DBAL\Schema\Schema $schema ) {
60 60
 
61 61
 			$table = $schema->createTable( 'mshop_locale_currency' );
62 62
 
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
 			return $schema;
79 79
 		},
80 80
 
81
-		'mshop_locale' => function ( \Doctrine\DBAL\Schema\Schema $schema ) {
81
+		'mshop_locale' => function( \Doctrine\DBAL\Schema\Schema $schema ) {
82 82
 
83 83
 			$table = $schema->createTable( 'mshop_locale' );
84 84
 
Please login to merge, or discard this patch.
lib/mshoplib/setup/default/schema/job.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 
9 9
 return array(
10 10
 	'table' => array(
11
-		'madmin_job' => function ( \Doctrine\DBAL\Schema\Schema $schema ) {
11
+		'madmin_job' => function( \Doctrine\DBAL\Schema\Schema $schema ) {
12 12
 
13 13
 			$table = $schema->createTable( 'madmin_job' );
14 14
 
Please login to merge, or discard this patch.
lib/mwlib/tests/MW/Mail/NoneTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
 
22 22
 	protected function tearDown()
23 23
 	{
24
-		unset($this->object);
24
+		unset( $this->object );
25 25
 	}
26 26
 
27 27
 
Please login to merge, or discard this patch.
lib/mwlib/tests/MW/Session/NoneTest.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -35,25 +35,25 @@
 block discarded – undo
35 35
 	 */
36 36
 	protected function tearDown()
37 37
 	{
38
-		unset($this->object);
38
+		unset( $this->object );
39 39
 	}
40 40
 
41 41
 
42 42
 	public function testGet()
43 43
 	{
44
-		$this->assertEquals(null, $this->object->get('test'));
44
+		$this->assertEquals( null, $this->object->get( 'test' ) );
45 45
 
46
-		$this->object->set('test', '123456789');
47
-		$this->assertEquals('123456789', $this->object->get('test'));
46
+		$this->object->set( 'test', '123456789' );
47
+		$this->assertEquals( '123456789', $this->object->get( 'test' ) );
48 48
 	}
49 49
 
50 50
 
51 51
 	public function testSet()
52 52
 	{
53
-		$this->object->set('test', null);
53
+		$this->object->set( 'test', null );
54 54
 		$this->assertEquals( null, $this->object->get( 'test' ) );
55 55
 
56
-		$this->object->set('test', '234');
56
+		$this->object->set( 'test', '234' );
57 57
 		$this->assertEquals( '234', $this->object->get( 'test' ) );
58 58
 	}
59 59
 }
Please login to merge, or discard this patch.
lib/mwlib/tests/MW/Session/PHPTest.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -23,25 +23,25 @@
 block discarded – undo
23 23
 
24 24
 	protected function tearDown()
25 25
 	{
26
-		unset($this->object);
26
+		unset( $this->object );
27 27
 	}
28 28
 
29 29
 
30 30
 	public function testGet()
31 31
 	{
32
-		$this->assertEquals(null, $this->object->get('test'));
32
+		$this->assertEquals( null, $this->object->get( 'test' ) );
33 33
 
34
-		$this->object->set('test', '123456789');
35
-		$this->assertEquals('123456789', $this->object->get('test'));
34
+		$this->object->set( 'test', '123456789' );
35
+		$this->assertEquals( '123456789', $this->object->get( 'test' ) );
36 36
 	}
37 37
 
38 38
 
39 39
 	public function testSet()
40 40
 	{
41
-		$this->object->set('test', null);
41
+		$this->object->set( 'test', null );
42 42
 		$this->assertEquals( null, $this->object->get( 'test' ) );
43 43
 
44
-		$this->object->set('test', '234');
44
+		$this->object->set( 'test', '234' );
45 45
 		$this->assertEquals( '234', $this->object->get( 'test' ) );
46 46
 	}
47 47
 }
Please login to merge, or discard this patch.
lib/mwlib/tests/MW/Config/testowrite/config.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 return array(
4
-	'manager' => array (
4
+	'manager' => array(
5 5
 		'default' => array(
6 6
 			'select' => 'select11',
7 7
 		),
Please login to merge, or discard this patch.
lib/mwlib/tests/MW/Config/testowrite/subconfig/default.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 return array(
4
-	'subitem' => array (
4
+	'subitem' => array(
5 5
 		'a' => array(
6 6
 			'aa' => '111',
7 7
 		),
Please login to merge, or discard this patch.
lib/mwlib/tests/MW/Config/testfiles/config.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,13 +1,13 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 return array(
4
-	'manager' => array (
4
+	'manager' => array(
5 5
 		'default' => array(
6 6
 			'select' => 'select1',
7 7
 		),
8 8
 	),
9 9
 	'provider' => array(
10
-		'delivery' => array (
10
+		'delivery' => array(
11 11
 			'sh' => array(
12 12
 				'select' => 'select2',
13 13
 			),
Please login to merge, or discard this patch.
lib/mwlib/tests/MW/Config/testfiles/subconfig/subsubconfig/default.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,13 +1,13 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 return array(
4
-	'subsubitem' => array (
4
+	'subsubitem' => array(
5 5
 		'aa' => array(
6 6
 			'aaa' => '111',
7 7
 		),
8 8
 	),
9 9
 	'subsubblablub' => array(
10
-		'bb' => array (
10
+		'bb' => array(
11 11
 			'bbb' => '222',
12 12
 		),
13 13
 	),
Please login to merge, or discard this patch.