private function PharInvocationCollection::getInvocations in Drupal 7
Parameters
bool $reverse:
Return value
1 call to PharInvocationCollection::getInvocations()
- PharInvocationCollection::findByCallback in misc/
typo3/ phar-stream-wrapper/ src/ Resolver/ PharInvocationCollection.php
File
- misc/
typo3/ phar-stream-wrapper/ src/ Resolver/ PharInvocationCollection.php, line 149
Class
Namespace
TYPO3\PharStreamWrapper\ResolverCode
private function getInvocations($reverse = false) {
if ($reverse) {
return array_reverse($this->invocations);
}
return $this->invocations;
}