This file is indexed.

/usr/share/php/ApiGen/Parser/Elements/ElementSorter.php is in php-apigen 4.1.2-1ubuntu2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<?php

/**
 * This file is part of the ApiGen (http://apigen.org)
 *
 * For the full copyright and license information, please view
 * the file license.md that was distributed with this source code.
 */

namespace ApiGen\Parser\Elements;

use ApiGen\Reflection\ReflectionConstant;
use ApiGen\Reflection\ReflectionElement;
use ApiGen\Reflection\ReflectionFunction;
use ApiGen\Reflection\ReflectionMethod;
use ApiGen\Reflection\ReflectionProperty;


class ElementSorter
{

	/**
	 * @param ReflectionConstant[]|ReflectionFunction[]|ReflectionMethod[]|ReflectionProperty[] $elements
	 * @return ReflectionConstant[]|ReflectionFunction[]|ReflectionMethod[]|ReflectionProperty[]
	 */
	public function sortElementsByFqn(array $elements)
	{
		if (count($elements)) {
			$firstElement = array_values($elements)[0];
			if ($firstElement instanceof ReflectionConstant) {
				return $this->sortConstantsByFqn($elements);

			} elseif ($firstElement instanceof ReflectionFunction) {
				return $this->sortFunctionsByFqn($elements);

			} elseif ($firstElement instanceof ReflectionMethod || $firstElement instanceof ReflectionProperty) {
				return $this->sortPropertiesOrMethodsByFqn($elements);
			}
		}
		return $elements;
	}


	/**
	 * @param ReflectionConstant[] $reflectionConstants
	 * @return ReflectionConstant[]
	 */
	private function sortConstantsByFqn($reflectionConstants)
	{
		usort($reflectionConstants, function ($a, $b) {
			return $this->compareConstantsByFqn($a, $b);
		});
		return $reflectionConstants;
	}


	/**
	 * @param ReflectionFunction[] $reflectionFunctions
	 * @return ReflectionFunction[]
	 */
	private function sortFunctionsByFqn($reflectionFunctions)
	{
		usort($reflectionFunctions, function ($a, $b) {
			return $this->compareFunctionsByFqn($a, $b);
		});
		return $reflectionFunctions;
	}


	/**
	 * @param ReflectionMethod[]|ReflectionProperty[] $reflectionElements
	 * @return ReflectionMethod[]
	 */
	private function sortPropertiesOrMethodsByFqn($reflectionElements)
	{
		usort($reflectionElements, function ($a, $b) {
			return $this->compareMethodsOrPropertiesByFqn($a, $b);
		});
		return $reflectionElements;
	}


	/**
	 * @return int
	 */
	private function compareConstantsByFqn(ReflectionConstant $reflection1, ReflectionConstant $reflection2)
	{
		return strcasecmp($this->getConstantFqnName($reflection1), $this->getConstantFqnName($reflection2));
	}


	/**
	 * @return int
	 */
	private function compareFunctionsByFqn(ReflectionFunction $reflection1, ReflectionFunction $reflection2)
	{
		return strcasecmp($this->getFunctionFqnName($reflection1), $this->getFunctionFqnName($reflection2));
	}


	/**
	 * @param ReflectionMethod|ReflectionProperty $reflection1
	 * @param ReflectionMethod|ReflectionProperty $reflection2
	 * @return int
	 */
	private function compareMethodsOrPropertiesByFqn($reflection1, $reflection2)
	{
		return strcasecmp(
			$this->getPropertyOrMethodFqnName($reflection1),
			$this->getPropertyOrMethodFqnName($reflection2)
		);
	}


	/**
	 * @return string
	 */
	private function getConstantFqnName(ReflectionConstant $reflection)
	{
		$class = $reflection->getDeclaringClassName() ?: $reflection->getNamespaceName();
		return $class . '\\' . $reflection->getName();
	}


	/**
	 * @return string
	 */
	private function getFunctionFqnName(ReflectionFunction $reflection)
	{
		return $reflection->getNamespaceName() . '\\' . $reflection->getName();
	}


	/**
	 * @param ReflectionMethod|ReflectionProperty $reflection
	 * @return string
	 */
	private function getPropertyOrMethodFqnName(ReflectionElement $reflection)
	{
		return $reflection->getDeclaringClassName() . '::' . $reflection->getName();
	}

}