TestCase   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
dl 0
loc 14
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A createApplication() 0 7 1
1
<?php
2
3
class TestCase extends Illuminate\Foundation\Testing\TestCase {
4
5
	/**
6
	 * Creates the application.
7
	 *
8
	 * @return \Symfony\Component\HttpKernel\HttpKernelInterface
9
	 */
10
	public function createApplication()
11
	{
12
		$unitTesting = true;
13
14
		$testEnvironment = 'testing';
15
16
		return require __DIR__.'/../../bootstrap/start.php';
17
	}
18
19
}
20