for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Onoi\Tesa\StopwordAnalyzer;
/**
* @license GNU GPL v2+
* @since 0.1
*
* @author mwjames
*/
class NullStopwordAnalyzer implements StopwordAnalyzer {
* @param string $word
* @return boolean
public function isStopWord( $word ) {
return false;
}