. */ /** * Doctrine_Search_Analyzer * * @package Doctrine * @subpackage Search * @author Konsta Vesterinen * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @version $Revision$ * @link www.phpdoctrine.org * @since 1.0 */ class Doctrine_Search_Analyzer implements Doctrine_Search_Analyzer_Interface { protected $_options = array(); public function __construct($options = array()) { $this->_options = $options; } public function analyze($text, $encoding = null) { return $text; } }