DeployOption
last analyzed

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 9
c 0
b 0
f 0

3 Methods

Rating   Name   Duplication   Size   Complexity  
getName() 0 1 ?
getTitle() 0 1 ?
getDefaultValue() 0 1 ?
1
<?php
2
interface DeployOption {
0 ignored issues
show
Coding Style Compatibility introduced by
Each interface must be in a namespace of at least one level (a top-level vendor name)

You can fix this by adding a namespace to your class:

namespace YourVendor;

class YourClass { }

When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.

Loading history...
3
4
	public function getName();
5
6
	public function getTitle();
7
8
	public function getDefaultValue();
9
10
}
11