Completed
Push — master ( e54ccb...52bc20 )
by Konstantin
03:38
created

AbstractFormHelper

Complexity

Total Complexity 0

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 0
lcom 0
cbo 0
dl 0
loc 13
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
set() 0 1 ?
get() 0 1 ?
1
<?php
2
3
namespace FormHelper;
4
5
/**
6
 * Class AbstractFormHelper
7
 * @package FormHelper
8
 */
9
abstract class AbstractFormHelper
10
{
11
    /**
12
     * @param $data
13
     * @return $this
14
     */
15
    public abstract function set($data);
0 ignored issues
show
Coding Style introduced by
The abstract declaration must precede the visibility declaration
Loading history...
16
17
    /**
18
     * @return mixed
19
     */
20
    public abstract function get();
0 ignored issues
show
Coding Style introduced by
The abstract declaration must precede the visibility declaration
Loading history...
21
}