function Manager::__construct

Parameters

Behavior $behaviour:

Resolvable $resolver:

Collectable $collection:

File

misc/typo3/phar-stream-wrapper/src/Manager.php, line 92

Class

Manager

Namespace

TYPO3\PharStreamWrapper

Code

private function __construct(Behavior $behaviour, Resolvable $resolver = null, Collectable $collection = null) {
    if ($collection === null) {
        $collection = new PharInvocationCollection();
    }
    if ($resolver === null) {
        $resolver = new PharInvocationResolver();
    }
    $this->collection = $collection;
    $this->resolver = $resolver;
    $this->behavior = $behaviour;
}

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