TestCase::createApplication()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 7
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 7
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 3
nc 1
nop 0
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