openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

Filter.class.php (178B)


      1 <?php
      2 
      3 
      4 namespace cms\generator\filter;
      5 
      6 
      7 interface Filter
      8 {
      9 	/**
     10 	 * Filtering a value.
     11 	 *
     12 	 * @param $value string
     13 	 * @return string
     14 	 */
     15 	public function filter( $value );
     16 }