Passed
Push — main ( 8d4d49...a3997f )
by Michiel
23:55
created
tests/Phing/Test/Task/Ext/Git/GitLogTaskTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@
 block discarded – undo
101 101
 
102 102
     public function setUp(): void
103 103
     {
104
-        if (! class_exists('VersionControl_Git')) {
104
+        if (!class_exists('VersionControl_Git')) {
105 105
             $this->markTestSkipped('The Git tasks depend on the pear/versioncontrol_git package being installed.');
106 106
         }
107 107
         if (is_readable(PHING_TEST_BASE . '/tmp/git')) {
Please login to merge, or discard this patch.
tests/Phing/Test/Task/Ext/Git/GitGcTaskTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
 {
33 33
     public function setUp(): void
34 34
     {
35
-        if (! class_exists('VersionControl_Git')) {
35
+        if (!class_exists('VersionControl_Git')) {
36 36
             $this->markTestSkipped('The Git tasks depend on the pear/versioncontrol_git package being installed.');
37 37
         }
38 38
         if (is_readable(PHING_TEST_BASE . '/tmp/git')) {
Please login to merge, or discard this patch.
tests/Phing/Test/Task/Ext/Git/GitBaseTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
 
36 36
     public function setUp(): void
37 37
     {
38
-        if (! class_exists('VersionControl_Git')) {
38
+        if (!class_exists('VersionControl_Git')) {
39 39
             $this->markTestSkipped('The Git tasks depend on the pear/versioncontrol_git package being installed.');
40 40
         }
41 41
         $this->configureProject(
Please login to merge, or discard this patch.
tests/Phing/Test/Task/Ext/Git/GitPushTaskTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
 {
33 33
     public function setUp(): void
34 34
     {
35
-        if (! class_exists('VersionControl_Git')) {
35
+        if (!class_exists('VersionControl_Git')) {
36 36
             $this->markTestSkipped('The Git tasks depend on the pear/versioncontrol_git package being installed.');
37 37
         }
38 38
         if (is_readable(PHING_TEST_BASE . '/tmp/git')) {
Please login to merge, or discard this patch.
tests/Phing/Test/Task/Ext/Git/GitInitTaskTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
 {
33 33
     public function setUp(): void
34 34
     {
35
-        if (! class_exists('VersionControl_Git')) {
35
+        if (!class_exists('VersionControl_Git')) {
36 36
             $this->markTestSkipped('The Git tasks depend on the pear/versioncontrol_git package being installed.');
37 37
         }
38 38
         // set temp directory used by test cases
Please login to merge, or discard this patch.
tests/Phing/Test/Task/Ext/Git/GitArchiveTaskTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
 {
34 34
     public function setUp(): void
35 35
     {
36
-        if (! class_exists('VersionControl_Git')) {
36
+        if (!class_exists('VersionControl_Git')) {
37 37
             $this->markTestSkipped('The Git tasks depend on the pear/versioncontrol_git package being installed.');
38 38
         }
39 39
         // set temp directory used by test cases
Please login to merge, or discard this patch.
tests/Phing/Test/Task/Ext/Hg/HgTaskTestSkip.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
 {
27 27
     public function markTestAsSkippedWhenHgNotInstalled(): void
28 28
     {
29
-        if (! class_exists('\Siad007\VersionControl\HG\Factory')) {
29
+        if (!class_exists('\Siad007\VersionControl\HG\Factory')) {
30 30
             $this->markTestSkipped('The Git tasks depend on the siad007/versioncontrol_hg package being installed.');
31 31
         }
32 32
 
Please login to merge, or discard this patch.
tests/Phing/Test/Task/Optional/PDOTaskTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
 {
27 27
     public function setUp(): void
28 28
     {
29
-        if (! extension_loaded('pdo_sqlite')) {
29
+        if (!extension_loaded('pdo_sqlite')) {
30 30
             $this->markTestSkipped('The PHP pdo sqlite (pdo_sqlite) is needed for this test.');
31 31
         }
32 32
 
Please login to merge, or discard this patch.
tests/Phing/Test/Task/Optional/PDODelimitersTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
      */
42 42
     public function setUp(): void
43 43
     {
44
-        if (! extension_loaded('pdo_sqlite')) {
44
+        if (!extension_loaded('pdo_sqlite')) {
45 45
             $this->markTestSkipped('The PHP pdo sqlite (pdo_sqlite) is needed for this test.');
46 46
         }
47 47
 
Please login to merge, or discard this patch.