Skip to content

Latest commit

 

History

History
31 lines (19 loc) · 419 Bytes

README.md

File metadata and controls

31 lines (19 loc) · 419 Bytes

Stream Wrapper Contracts

Interface for PHP stream wrapper methods

Content

Setup

Install with Composer

composer require orisai/stream-wrapper-contracts

Usage

Implement StreamWrapper interface

use Orisai\StreamWrapperContracts\StreamWrapper;

final class ExampleStreamWrapper implements StreamWrapper
{

	// ...

}