You are here

private function PharInvocationCollection::getInvocations in Drupal 7

Parameters

bool $reverse:

Return value

PharInvocation[]

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

PharInvocationCollection

Namespace

TYPO3\PharStreamWrapper\Resolver

Code

private function getInvocations($reverse = false) {
  if ($reverse) {
    return array_reverse($this->invocations);
  }
  return $this->invocations;
}