Crud\Listener\BaseListener::resourceName PHP Method

resourceName() public method

By default it uses Inflector::humanize, but can be changed using the "name" configuration property
public resourceName ( string | null $value = null ) : string
$value string | null Value
return string
    public function resourceName($value = null)
    {
        if ($value === null) {
            return $this->_action()->resourceName();
        }
        return $this->_action()->resourceName($value);
    }