Sokil\Mongo\Validator::getName PHP Method

getName() public method

public getName ( )
    public function getName()
    {
        $class = explode('\\', get_called_class());
        $class = strtolower(array_pop($class));
        // remove 'validator' suffix
        return substr($class, 0, -9);
    }