Flint\Routing\ChainMatcher::sort PHP Method

sort() protected method

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