Passed
Push — develop ( 4427e8...bd344d )
by Richard
03:24
created

LsfTextarea   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Importance

Changes 1
Bugs 1 Features 0
Metric Value
wmc 1
eloc 2
c 1
b 1
f 0
dl 0
loc 12
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A response() 0 2 1
1
<?php
2
3
namespace Riclep\StoryblokForms\Blocks;
4
5
use Illuminate\Support\Str;
6
use Riclep\StoryblokForms\Input;
7
8
class LsfTextarea extends Input
9
{
10
	// Interface this....
11
12
	/**
13
	 * Returns the Input’s response after the form has been submitted and validated
14
	 *
15
	 * @param $input
16
	 * @return mixed
17
	 */
18
	public function response($input) {
19
		return $input;
20
	}
21
}