You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
618 B
38 lines
618 B
<?php
|
|
/**
|
|
* Part of the Fuel framework.
|
|
*
|
|
* @package Fuel
|
|
* @version 1.8
|
|
* @author Fuel Development Team
|
|
* @license MIT License
|
|
* @copyright 2010 - 2016 Fuel Development Team
|
|
* @link http://fuelphp.com
|
|
*/
|
|
|
|
namespace Fuel\Core;
|
|
|
|
interface Sanitization
|
|
{
|
|
/**
|
|
* Enable sanitization mode in the object
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function sanitize();
|
|
|
|
/**
|
|
* Disable sanitization mode in the object
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function unsanitize();
|
|
|
|
/**
|
|
* Returns the current sanitization state of the object
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function sanitized();
|
|
}
|