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

LsfTextarea::response()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 1 Features 0
Metric Value
cc 1
eloc 1
c 1
b 1
f 0
nc 1
nop 1
dl 0
loc 2
rs 10
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
}