FilterInterface::sanitize()
last analyzed

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 1
c 0
b 0
f 0
1
<?php
2
namespace Redaxscript\Filter;
3
4
/**
5
 * interface to define a filter class
6
 *
7
 * @since 2.2.0
8
 *
9
 * @package Redaxscript
10
 * @category Filter
11
 * @author Henry Ruhs
12
 */
13
14
interface FilterInterface
15
{
16
	/**
17
	 * sanitize the value
18
	 *
19
	 * @since 2.2.0
20
	 */
21
22
	public function sanitize();
23
}
24