Completed
Push — master ( 52755b...6c4366 )
by smiley
02:13
created
vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoveredClass.php 1 patch
Indentation   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -3,36 +3,36 @@
 block discarded – undo
3 3
 
4 4
 class CoveredParentClass
5 5
 {
6
-    private function privateMethod()
7
-    {
8
-    }
6
+	private function privateMethod()
7
+	{
8
+	}
9 9
 
10
-    protected function protectedMethod()
11
-    {
12
-        $this->privateMethod();
13
-    }
10
+	protected function protectedMethod()
11
+	{
12
+		$this->privateMethod();
13
+	}
14 14
 
15
-    public function publicMethod()
16
-    {
17
-        $this->protectedMethod();
18
-    }
15
+	public function publicMethod()
16
+	{
17
+		$this->protectedMethod();
18
+	}
19 19
 }
20 20
 
21 21
 class CoveredClass extends CoveredParentClass
22 22
 {
23
-    private function privateMethod()
24
-    {
25
-    }
23
+	private function privateMethod()
24
+	{
25
+	}
26 26
 
27
-    protected function protectedMethod()
28
-    {
29
-        parent::protectedMethod();
30
-        $this->privateMethod();
31
-    }
27
+	protected function protectedMethod()
28
+	{
29
+		parent::protectedMethod();
30
+		$this->privateMethod();
31
+	}
32 32
 
33
-    public function publicMethod()
34
-    {
35
-        parent::publicMethod();
36
-        $this->protectedMethod();
37
-    }
33
+	public function publicMethod()
34
+	{
35
+		parent::publicMethod();
36
+		$this->protectedMethod();
37
+	}
38 38
 }
Please login to merge, or discard this patch.
phpunit/php-code-coverage/tests/_files/NamespaceCoverageNotPublicTest.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -3,12 +3,12 @@
 block discarded – undo
3 3
 
4 4
 class NamespaceCoverageNotPublicTest extends TestCase
5 5
 {
6
-    /**
7
-     * @covers Foo\CoveredClass::<!public>
8
-     */
9
-    public function testSomething()
10
-    {
11
-        $o = new Foo\CoveredClass;
12
-        $o->publicMethod();
13
-    }
6
+	/**
7
+	 * @covers Foo\CoveredClass::<!public>
8
+	 */
9
+	public function testSomething()
10
+	{
11
+		$o = new Foo\CoveredClass;
12
+		$o->publicMethod();
13
+	}
14 14
 }
Please login to merge, or discard this patch.
vendor/phpunit/php-code-coverage/tests/_files/source_without_ignore.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1 1
 <?php
2 2
 if ($neverHappens) {
3
-    print '*';
3
+	print '*';
4 4
 }
Please login to merge, or discard this patch.
php-code-coverage/tests/_files/NamespaceCoverageClassExtendedTest.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -3,12 +3,12 @@
 block discarded – undo
3 3
 
4 4
 class NamespaceCoverageClassExtendedTest extends TestCase
5 5
 {
6
-    /**
7
-     * @covers Foo\CoveredClass<extended>
8
-     */
9
-    public function testSomething()
10
-    {
11
-        $o = new Foo\CoveredClass;
12
-        $o->publicMethod();
13
-    }
6
+	/**
7
+	 * @covers Foo\CoveredClass<extended>
8
+	 */
9
+	public function testSomething()
10
+	{
11
+		$o = new Foo\CoveredClass;
12
+		$o->publicMethod();
13
+	}
14 14
 }
Please login to merge, or discard this patch.
vendor/phpunit/php-code-coverage/tests/_files/CoverageNotPrivateTest.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -3,12 +3,12 @@
 block discarded – undo
3 3
 
4 4
 class CoverageNotPrivateTest extends TestCase
5 5
 {
6
-    /**
7
-     * @covers CoveredClass::<!private>
8
-     */
9
-    public function testSomething()
10
-    {
11
-        $o = new CoveredClass;
12
-        $o->publicMethod();
13
-    }
6
+	/**
7
+	 * @covers CoveredClass::<!private>
8
+	 */
9
+	public function testSomething()
10
+	{
11
+		$o = new CoveredClass;
12
+		$o->publicMethod();
13
+	}
14 14
 }
Please login to merge, or discard this patch.
vendor/phpunit/php-code-coverage/tests/_files/CoveragePrivateTest.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -3,12 +3,12 @@
 block discarded – undo
3 3
 
4 4
 class CoveragePrivateTest extends TestCase
5 5
 {
6
-    /**
7
-     * @covers CoveredClass::<private>
8
-     */
9
-    public function testSomething()
10
-    {
11
-        $o = new CoveredClass;
12
-        $o->publicMethod();
13
-    }
6
+	/**
7
+	 * @covers CoveredClass::<private>
8
+	 */
9
+	public function testSomething()
10
+	{
11
+		$o = new CoveredClass;
12
+		$o->publicMethod();
13
+	}
14 14
 }
Please login to merge, or discard this patch.
phpunit/php-code-coverage/tests/_files/NotExistingCoveredElementTest.php 1 patch
Indentation   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -3,24 +3,24 @@
 block discarded – undo
3 3
 
4 4
 class NotExistingCoveredElementTest extends TestCase
5 5
 {
6
-    /**
7
-     * @covers NotExistingClass
8
-     */
9
-    public function testOne()
10
-    {
11
-    }
6
+	/**
7
+	 * @covers NotExistingClass
8
+	 */
9
+	public function testOne()
10
+	{
11
+	}
12 12
 
13
-    /**
14
-     * @covers NotExistingClass::notExistingMethod
15
-     */
16
-    public function testTwo()
17
-    {
18
-    }
13
+	/**
14
+	 * @covers NotExistingClass::notExistingMethod
15
+	 */
16
+	public function testTwo()
17
+	{
18
+	}
19 19
 
20
-    /**
21
-     * @covers NotExistingClass::<public>
22
-     */
23
-    public function testThree()
24
-    {
25
-    }
20
+	/**
21
+	 * @covers NotExistingClass::<public>
22
+	 */
23
+	public function testThree()
24
+	{
25
+	}
26 26
 }
Please login to merge, or discard this patch.
phpunit/php-code-coverage/tests/_files/NamespaceCoveragePrivateTest.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -3,12 +3,12 @@
 block discarded – undo
3 3
 
4 4
 class NamespaceCoveragePrivateTest extends TestCase
5 5
 {
6
-    /**
7
-     * @covers Foo\CoveredClass::<private>
8
-     */
9
-    public function testSomething()
10
-    {
11
-        $o = new Foo\CoveredClass;
12
-        $o->publicMethod();
13
-    }
6
+	/**
7
+	 * @covers Foo\CoveredClass::<private>
8
+	 */
9
+	public function testSomething()
10
+	{
11
+		$o = new Foo\CoveredClass;
12
+		$o->publicMethod();
13
+	}
14 14
 }
Please login to merge, or discard this patch.
vendor/phpunit/php-code-coverage/tests/_files/CoverageClassExtendedTest.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -3,12 +3,12 @@
 block discarded – undo
3 3
 
4 4
 class CoverageClassExtendedTest extends TestCase
5 5
 {
6
-    /**
7
-     * @covers CoveredClass<extended>
8
-     */
9
-    public function testSomething()
10
-    {
11
-        $o = new CoveredClass;
12
-        $o->publicMethod();
13
-    }
6
+	/**
7
+	 * @covers CoveredClass<extended>
8
+	 */
9
+	public function testSomething()
10
+	{
11
+		$o = new CoveredClass;
12
+		$o->publicMethod();
13
+	}
14 14
 }
Please login to merge, or discard this patch.