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

AbstractFormHelper::set()

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 1
c 0
b 0
f 0
nc 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
}