Text   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
eloc 6
dl 0
loc 15
ccs 0
cts 4
cp 0
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A resolveAttributes() 0 6 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 Text extends AbstractInput implements FormFieldInterface
9
{
10
    protected string $type = 'text';
11
12
    protected ?string $pattern = null;
13
14
    /**
15
     * @return $this
16
     */
17
    protected function resolveAttributes(): Text
18
    {
19
        parent::resolveAttributes()
20
            ->addAttribute('pattern', $this->pattern);
21
22
        return $this;
23
    }
24
}
25