You are here

private function Manager::__construct in Drupal 7

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