TestFileSystemStream::unregister PHP Метод

unregister() публичный статический Метод

Unregisters a protocol.
public static unregister ( string $protocol ) : boolean
$protocol string Protocol name
Результат boolean
    public static function unregister($protocol)
    {
        return stream_wrapper_unregister((string) $protocol);
    }

Usage Example

Пример #1
0
 /**
  * Cleans up the testing environment.
  */
 protected function tearDown()
 {
     \TestFileSystemStream::unregister($this->protocol);
 }