ZF\Apigility\Admin\Model\RestServiceEntity::getRouteNormalizationFilter PHP Method

getRouteNormalizationFilter() protected method

Retrieve and/or initialize the normalization filter chain
protected getRouteNormalizationFilter ( ) : Zend\Filter\FilterChain
return Zend\Filter\FilterChain
    protected function getRouteNormalizationFilter()
    {
        if (isset($this->filters['route']) && $this->filters['route'] instanceof FilterChain) {
            return $this->filters['route'];
        }
        $filter = new FilterChain();
        $filter->attachByName('WordCamelCaseToDash')->attachByName('StringToLower');
        $this->filters['route'] = $filter;
        return $filter;
    }