Completed
Push — master ( 52755b...6c4366 )
by smiley
02:13
created
vendor/phpunit/php-token-stream/tests/TokenTest.php 1 patch
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -12,21 +12,21 @@
 block discarded – undo
12 12
 
13 13
 class PHP_TokenTest extends TestCase
14 14
 {
15
-    /**
16
-     * @covers PHP_Token::__construct
17
-     * @covers PHP_Token::__toString
18
-     */
19
-    public function testToString()
20
-    {
21
-        $this->markTestIncomplete();
22
-    }
15
+	/**
16
+	 * @covers PHP_Token::__construct
17
+	 * @covers PHP_Token::__toString
18
+	 */
19
+	public function testToString()
20
+	{
21
+		$this->markTestIncomplete();
22
+	}
23 23
 
24
-    /**
25
-     * @covers PHP_Token::__construct
26
-     * @covers PHP_Token::getLine
27
-     */
28
-    public function testGetLine()
29
-    {
30
-        $this->markTestIncomplete();
31
-    }
24
+	/**
25
+	 * @covers PHP_Token::__construct
26
+	 * @covers PHP_Token::getLine
27
+	 */
28
+	public function testGetLine()
29
+	{
30
+		$this->markTestIncomplete();
31
+	}
32 32
 }
Please login to merge, or discard this patch.
vendor/phpunit/php-token-stream/tests/_fixture/source4.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -2,29 +2,29 @@
 block discarded – undo
2 2
 // Declare the interface 'iTemplate'
3 3
 interface iTemplate
4 4
 {
5
-    public function setVariable($name, $var);
6
-    public function
7
-        getHtml($template);
5
+	public function setVariable($name, $var);
6
+	public function
7
+		getHtml($template);
8 8
 }
9 9
 
10 10
 interface a
11 11
 {
12
-    public function foo();
12
+	public function foo();
13 13
 }
14 14
 
15 15
 interface b extends a
16 16
 {
17
-    public function baz(Baz $baz);
17
+	public function baz(Baz $baz);
18 18
 }
19 19
 
20 20
 // short desc for class that implement a unique interface
21 21
 class c implements b
22 22
 {
23
-    public function foo()
24
-    {
25
-    }
23
+	public function foo()
24
+	{
25
+	}
26 26
 
27
-    public function baz(Baz $baz)
28
-    {
29
-    }
27
+	public function baz(Baz $baz)
28
+	{
29
+	}
30 30
 }
Please login to merge, or discard this patch.
vendor/phpunit/php-token-stream/tests/_fixture/issue30.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 class Foo
3 3
 {
4
-    public function bar()
5
-    {
6
-        return Foo::CLASS;
7
-    }
4
+	public function bar()
5
+	{
6
+		return Foo::CLASS;
7
+	}
8 8
 }
Please login to merge, or discard this patch.
tests/_fixture/class_with_multiple_anonymous_classes_and_functions.php 1 patch
Indentation   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -1,26 +1,26 @@
 block discarded – undo
1 1
 <?php
2 2
 class class_with_multiple_anonymous_classes_and_functions
3 3
 {
4
-    public function m()
5
-    {
6
-        $c = new class {
7
-            public function n() {
8
-                return true;
9
-            }
10
-        };
4
+	public function m()
5
+	{
6
+		$c = new class {
7
+			public function n() {
8
+				return true;
9
+			}
10
+		};
11 11
 
12
-        $d = new class {
13
-            public function o() {
14
-                return false;
15
-            }
16
-        };
12
+		$d = new class {
13
+			public function o() {
14
+				return false;
15
+			}
16
+		};
17 17
 
18
-        $f = function ($a, $b) {
19
-            return $a + $b;
20
-        };
18
+		$f = function ($a, $b) {
19
+			return $a + $b;
20
+		};
21 21
 
22
-        $g = function ($a, $b) {
23
-            return $a - $b;
24
-        };
25
-    }
22
+		$g = function ($a, $b) {
23
+			return $a - $b;
24
+		};
25
+	}
26 26
 }
27 27
\ No newline at end of file
Please login to merge, or discard this patch.
phpunit/php-token-stream/tests/_fixture/class_with_method_named_empty.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 class class_with_method_named_empty
3 3
 {
4
-    public function empty(): void
5
-    {
6
-    }
4
+	public function empty(): void
5
+	{
6
+	}
7 7
 }
Please login to merge, or discard this patch.
vendor/phpunit/php-token-stream/tests/_fixture/classInScopedNamespace.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace Foo\BarScoped {
3 3
 
4
-    class TestClass {
4
+	class TestClass {
5 5
 
6
-    }
6
+	}
7 7
 
8 8
 }
9 9
 
Please login to merge, or discard this patch.
vendor/phpunit/php-token-stream/tests/_fixture/source2.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 // short desc
3 3
 abstract class A {
4
-    /* abst meth: */
5
-    public static  abstract function method();
4
+	/* abst meth: */
5
+	public static  abstract function method();
6 6
 }
Please login to merge, or discard this patch.
tests/_fixture/class_with_method_that_declares_anonymous_class.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -4,12 +4,12 @@
 block discarded – undo
4 4
 
5 5
 class class_with_method_that_declares_anonymous_class
6 6
 {
7
-    public function method()
8
-    {
9
-        $o = new class { public function foo() {} };
10
-        $o = new class{public function foo(){}};
11
-        $o = new class extends stdClass {};
12
-        $o = new class extends stdClass {};
13
-        $o = new class implements foo {};
14
-    }
7
+	public function method()
8
+	{
9
+		$o = new class { public function foo() {} };
10
+		$o = new class{public function foo(){}};
11
+		$o = new class extends stdClass {};
12
+		$o = new class extends stdClass {};
13
+		$o = new class implements foo {};
14
+	}
15 15
 }
Please login to merge, or discard this patch.
tests/_fixture/multipleNamespacesWithOneClassUsingNonBraceSyntax.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -1,14 +1,14 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace Foo\Bar
3 3
 {
4
-    class TestClassInBar
5
-    {
6
-    }
4
+	class TestClassInBar
5
+	{
6
+	}
7 7
 }
8 8
 
9 9
 namespace Foo\Baz
10 10
 {
11
-    class TestClassInBaz
12
-    {
13
-    }
11
+	class TestClassInBaz
12
+	{
13
+	}
14 14
 }
Please login to merge, or discard this patch.