PhpSpec\Util\ReservedWordsMethodNameChecker::isNameValid PHP Method

isNameValid() public method

public isNameValid ( $name )
    public function isNameValid($name)
    {
        return !in_array(strtolower($name), $this->reservedWords);
    }
ReservedWordsMethodNameChecker