PATH:
home
/
sarkas88.com
/
public_html
/
wp-content
/
plugins
/
amp
/
vendor
/
willwashburn
/
stream
/
src
/
Stream
<?php namespace WillWashburn\Stream; /** * Interface StreamableInterface * * @package FasterImage */ interface StreamableInterface { /** * Append to the stream string * * @param $string */ public function write($string); /** * Get Characters from the string * * @param $characters */ public function read($characters); /** * Get characters from the string but don't move the pointer * * @param $characters * * @return mixed */ public function peek($characters); /** * Resets the pointer to the 0 position * @return mixed */ public function resetPointer(); }
[+]
Exception
[-] Stream.php
[open]
[-] StreamableInterface.php
[open]
[+]
..