function PharInvocationCollection::getInvocations

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;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.