You are here

private function PharStreamWrapper::registerStreamWrapper in Drupal 7

1 call to PharStreamWrapper::registerStreamWrapper()
PharStreamWrapper::invokeInternalStreamWrapper in misc/typo3/phar-stream-wrapper/src/PharStreamWrapper.php
Invokes commands on the native PHP Phar stream wrapper.

File

misc/typo3/phar-stream-wrapper/src/PharStreamWrapper.php, line 506

Class

PharStreamWrapper

Namespace

TYPO3\PharStreamWrapper

Code

private function registerStreamWrapper() {
  stream_wrapper_unregister('phar');
  stream_wrapper_register('phar', get_class($this));
}