Completed
Push — master ( a3db22...aec616 )
by Marin
53:38 queued 51:58
created

Broken_Field::template()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 5
rs 9.4285
cc 1
eloc 3
nc 1
nop 0
1
<?php 
2
3
namespace Carbon_Fields\Field;
4
5
/**
6
 * Broken field class.
7
 */
8
class Broken_Field extends Field {
9
10
	function template() {
0 ignored issues
show
Best Practice introduced by
It is generally recommended to explicitly declare the visibility for methods.

Adding explicit visibility (private, protected, or public) is generally recommend to communicate to other developers how, and from where this method is intended to be used.

Loading history...
11
		_e( 'This field is misconfigured', 'carbon_fields' );
12
13
		parent::template();
14
	}
15
16
}