This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Find all BadWords from the wordlist | |
* | |
* @param array[String] $wordList | |
* @return Tx_Extbase_Persistence_QueryResult | |
*/ | |
public function findByBadWordList($wordList) { | |
$query = $this->createQuery(); | |
$query->matching( |
NewerOlder