예제 #1
0
파일: Text.php 프로젝트: bordeux/Lukas
 /**
  * __construct
  * 
  * @param   string $text
  */
 public function __construct($text)
 {
     parent::__construct(QueryScanner::TEXT, $this->stripQuotes($text));
 }
예제 #2
0
파일: Word.php 프로젝트: bordeux/Lukas
 /**
  * __construct
  *
  * @param   string $text
  */
 public function __construct($word)
 {
     parent::__construct(QueryScanner::WORD, $word);
 }