Flint\Routing\ChainMatcher::sort PHP Метод

sort() защищенный Метод

protected sort ( )
    protected function sort()
    {
        $matchers = array();
        krsort($this->matchers);
        foreach ($this->matchers as $collection) {
            $matchers = array_merge($matchers, $collection);
        }
        return $matchers;
    }