ApiGen\Parser\Elements\ElementSorter::compareFunctionsByFqn PHP Method

compareFunctionsByFqn() private method

private compareFunctionsByFqn ( ApiGen\Contracts\Parser\Reflection\FunctionReflectionInterface $reflection1, ApiGen\Contracts\Parser\Reflection\FunctionReflectionInterface $reflection2 ) : integer
$reflection1 ApiGen\Contracts\Parser\Reflection\FunctionReflectionInterface
$reflection2 ApiGen\Contracts\Parser\Reflection\FunctionReflectionInterface
return integer
    private function compareFunctionsByFqn(FunctionReflectionInterface $reflection1, FunctionReflectionInterface $reflection2)
    {
        return strcasecmp($this->getFunctionFqnName($reflection1), $this->getFunctionFqnName($reflection2));
    }