/**
  * @return float
  */
 public function getEntropy()
 {
     return parent::getEntropy() + $this->l33tEntropy();
 }
 /**
  * Match occurences of dictionary words in password.
  *
  * @copydoc Match::match()
  */
 public static function match($password, array $userInputs = array())
 {
     return DictionaryMatch::match($password, $userInputs);
 }