Passed
Branch master (5c167b)
by smiley
02:26
created

Logfile   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 1
dl 0
loc 4
ccs 0
cts 2
cp 0
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __log() 0 2 1
1
<?php
2
/**
3
 * Class Logfile
4
 *
5
 * @filesource   Logfile.php
6
 * @created      04.01.2018
7
 * @package      chillerlan\Logger\Output
8
 * @author       Smiley <[email protected]>
9
 * @copyright    2018 Smiley
10
 * @license      MIT
11
 */
12
13
namespace chillerlan\Logger\Output;
14
15
/**
16
 */
17
class Logfile extends ConsoleLog{
18
19
	protected function __log(string $level, string $message, array $context = null){
20
		$data = $this->message($level, $message, $context);
0 ignored issues
show
Unused Code introduced by
The assignment to $data is dead and can be removed.
Loading history...
21
		// ... @todo
22
	}
23
24
}
25