Interface for PHP stream wrapper methods
Install with Composer
composer require orisai/stream-wrapper-contracts
Implement StreamWrapper
interface
use Orisai\StreamWrapperContracts\StreamWrapper;
final class ExampleStreamWrapper implements StreamWrapper
{
// ...
}