Passed
Push — master ( f62223...75b16c )
by Michael
02:33
created
class/pear/Calendar/tests/unixts_engine_test.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 //
3 3
 
4
-require_once __DIR__ . '/simple_include.php';
5
-require_once __DIR__ . '/calendar_include.php';
4
+require_once __DIR__.'/simple_include.php';
5
+require_once __DIR__.'/calendar_include.php';
6 6
 
7 7
 /**
8 8
  * Class TestOfUnixTsEngine.
Please login to merge, or discard this patch.
class/pear/Calendar/tests/peardate_engine_test.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 //
3 3
 
4
-require_once __DIR__ . '/simple_include.php';
5
-require_once __DIR__ . '/calendar_include.php';
4
+require_once __DIR__.'/simple_include.php';
5
+require_once __DIR__.'/calendar_include.php';
6 6
 
7 7
 /**
8 8
  * Class TestOfPearDateEngine.
Please login to merge, or discard this patch.
class/pear/Calendar/tests/calendar_test.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 //
3 3
 
4
-require_once __DIR__ . '/simple_include.php';
5
-require_once __DIR__ . '/calendar_include.php';
4
+require_once __DIR__.'/simple_include.php';
5
+require_once __DIR__.'/calendar_include.php';
6 6
 
7 7
 /**
8 8
  * Class TestOfCalendar.
Please login to merge, or discard this patch.
Indentation   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -37,13 +37,13 @@  discard block
 block discarded – undo
37 37
     public function testPrevYear_Array()
38 38
     {
39 39
         $this->assertEqual([
40
-                               'year'   => 2002,
41
-                               'month'  => 1,
42
-                               'day'    => 1,
43
-                               'hour'   => 0,
44
-                               'minute' => 0,
45
-                               'second' => 0,
46
-                           ], $this->cal->prevYear('array'));
40
+                                'year'   => 2002,
41
+                                'month'  => 1,
42
+                                'day'    => 1,
43
+                                'hour'   => 0,
44
+                                'minute' => 0,
45
+                                'second' => 0,
46
+                            ], $this->cal->prevYear('array'));
47 47
     }
48 48
 
49 49
     public function testThisYear()
@@ -64,13 +64,13 @@  discard block
 block discarded – undo
64 64
     public function testPrevMonth_Array()
65 65
     {
66 66
         $this->assertEqual([
67
-                               'year'   => 2003,
68
-                               'month'  => 9,
69
-                               'day'    => 1,
70
-                               'hour'   => 0,
71
-                               'minute' => 0,
72
-                               'second' => 0,
73
-                           ], $this->cal->prevMonth('array'));
67
+                                'year'   => 2003,
68
+                                'month'  => 9,
69
+                                'day'    => 1,
70
+                                'hour'   => 0,
71
+                                'minute' => 0,
72
+                                'second' => 0,
73
+                            ], $this->cal->prevMonth('array'));
74 74
     }
75 75
 
76 76
     public function testThisMonth()
@@ -91,13 +91,13 @@  discard block
 block discarded – undo
91 91
     public function testPrevDay_Array()
92 92
     {
93 93
         $this->assertEqual([
94
-                               'year'   => 2003,
95
-                               'month'  => 10,
96
-                               'day'    => 24,
97
-                               'hour'   => 0,
98
-                               'minute' => 0,
99
-                               'second' => 0,
100
-                           ], $this->cal->prevDay('array'));
94
+                                'year'   => 2003,
95
+                                'month'  => 10,
96
+                                'day'    => 24,
97
+                                'hour'   => 0,
98
+                                'minute' => 0,
99
+                                'second' => 0,
100
+                            ], $this->cal->prevDay('array'));
101 101
     }
102 102
 
103 103
     public function testThisDay()
Please login to merge, or discard this patch.
class/pear/Calendar/tests/calendar_engine_tests.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 //
3 3
 
4
-require_once __DIR__ . '/simple_include.php';
5
-require_once __DIR__ . '/calendar_include.php';
4
+require_once __DIR__.'/simple_include.php';
5
+require_once __DIR__.'/calendar_include.php';
6 6
 
7 7
 /**
8 8
  * Class CalendarEngineTests.
Please login to merge, or discard this patch.
class/pear/Calendar/tests/calendar_tabular_tests.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 //
3 3
 
4
-require_once __DIR__ . '/simple_include.php';
5
-require_once __DIR__ . '/calendar_include.php';
4
+require_once __DIR__.'/simple_include.php';
5
+require_once __DIR__.'/calendar_include.php';
6 6
 
7 7
 /**
8 8
  * Class CalendarTabularTests.
Please login to merge, or discard this patch.
class/pear/Calendar/tests/util_uri_test.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 //
3 3
 
4
-require_once __DIR__ . '/simple_include.php';
5
-require_once __DIR__ . '/calendar_include.php';
4
+require_once __DIR__.'/simple_include.php';
5
+require_once __DIR__.'/calendar_include.php';
6 6
 
7 7
 Mock::generate('Calendar_Day', 'Mock_Calendar_Day');
8 8
 Mock::generate('Calendar_Engine_Interface', 'Mock_Calendar_Engine');
Please login to merge, or discard this patch.
class/pear/Calendar/tests/simple_include.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 //
3 3
 if (!defined('SIMPLE_TEST')) {
4
-    define('SIMPLE_TEST', dirname(dirname(dirname(__DIR__))) . '/simpletest/');
4
+    define('SIMPLE_TEST', dirname(dirname(dirname(__DIR__))).'/simpletest/');
5 5
 }
6 6
 
7
-require_once SIMPLE_TEST . 'unit_tester.php';
8
-require_once SIMPLE_TEST . 'reporter.php';
9
-require_once SIMPLE_TEST . 'mock_objects.php';
7
+require_once SIMPLE_TEST.'unit_tester.php';
8
+require_once SIMPLE_TEST.'reporter.php';
9
+require_once SIMPLE_TEST.'mock_objects.php';
Please login to merge, or discard this patch.
class/pear/Calendar/tests/validator_error_test.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 //
3 3
 
4
-require_once __DIR__ . '/simple_include.php';
5
-require_once __DIR__ . '/calendar_include.php';
4
+require_once __DIR__.'/simple_include.php';
5
+require_once __DIR__.'/calendar_include.php';
6 6
 
7 7
 /**
8 8
  * Class TestOfValidationError.
Please login to merge, or discard this patch.
class/pear/Calendar/tests/decorator_tests.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 //
3 3
 
4
-require_once __DIR__ . '/simple_include.php';
5
-require_once __DIR__ . '/calendar_include.php';
4
+require_once __DIR__.'/simple_include.php';
5
+require_once __DIR__.'/calendar_include.php';
6 6
 
7 7
 /**
8 8
  * Class DecoratorTests.
Please login to merge, or discard this patch.