ApiGen\Parser\Elements\ElementSorter::compareFunctionsByFqn PHP Méthode

compareFunctionsByFqn() private méthode

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
Résultat integer
    private function compareFunctionsByFqn(FunctionReflectionInterface $reflection1, FunctionReflectionInterface $reflection2)
    {
        return strcasecmp($this->getFunctionFqnName($reflection1), $this->getFunctionFqnName($reflection2));
    }