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