Completed
Push — try/code-signature-diff ( 5d4d06...59dd1a )
by
unknown
135:41 queued 126:54
created

Missing::to_csv()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace Automattic\Jetpack\Analyzer\Differences;
4
5
class Missing {
6
	public $declaration;
7
8
	function __construct( $declaration ) {
9
		$this->declaration = $declaration;
10
	}
11
12
	public function to_csv() {
13
		return 'missing,' . $this->declaration->path . ',' . $this->declaration->type() . ',' . $this->declaration->display_name();
14
	}
15
}