Input   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
eloc 3
dl 0
loc 14
ccs 0
cts 3
cp 0
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A setType() 0 5 1
1
<?php
2
3
namespace WebTheory\Saveyour\Field\Type;
4
5
use WebTheory\Saveyour\Contracts\Field\FormFieldInterface;
6
use WebTheory\Saveyour\Field\Type\Abstracts\AbstractInput;
7
8
class Input extends AbstractInput implements FormFieldInterface
9
{
10
    /**
11
     * Set the value of type
12
     *
13
     * @param string  $type
14
     *
15
     * @return $this
16
     */
17
    public function setType(string $type): Input
18
    {
19
        $this->type = $type;
20
21
        return $this;
22
    }
23
}
24