* An offset to check for. *

* @return boolean true on success or false on failure. *

*

* The return value will be casted to boolean if non-boolean was returned. * @since 5.0.0 */ public function offsetExists($offset) { // TODO: Implement offsetExists() method. } /** * Offset to retrieve * @link http://php.net/manual/en/arrayaccess.offsetget.php * @param mixed $offset

* The offset to retrieve. *

* @return mixed Can return all value types. * @since 5.0.0 */ public function offsetGet($offset) { // TODO: Implement offsetGet() method. } /** * Offset to set * @link http://php.net/manual/en/arrayaccess.offsetset.php * @param mixed $offset

* The offset to assign the value to. *

* @param mixed $value

* The value to set. *

* @return void * @since 5.0.0 */ public function offsetSet($offset, $value) { // TODO: Implement offsetSet() method. } /** * Offset to unset * @link http://php.net/manual/en/arrayaccess.offsetunset.php * @param mixed $offset

* The offset to unset. *

* @return void * @since 5.0.0 */ public function offsetUnset($offset) { // TODO: Implement offsetUnset() method. } /** * {@inheritdoc} */ public static function put(string $path, string $content, int $mode = 0) : bool { // TODO: Implement put() method. } /** * {@inheritdoc} */ public static function get(string $path) : string { // TODO: Implement get() method. } /** * {@inheritdoc} */ public function putContent(string $content, int $mode = 0) : bool { // TODO: Implement putContent() method. } /** * {@inheritdoc} */ public function getContent() : string { // TODO: Implement getContent() method. } /** * {@inheritdoc} */ public static function sanitize(string $path, string $replace = '') : string { // TODO: Implement sanitize() method. } /** * {@inheritdoc} */ public function getNode(string $name) { // TODO: Implement getNode() method. } /** * {@inheritdoc} */ public function addNode($file) : bool { // TODO: Implement addNode() method. } /** * {@inheritdoc} */ public static function set(string $path, string $content) : bool { // TODO: Implement set() method. } /** * {@inheritdoc} */ public static function append(string $path, string $content) : bool { // TODO: Implement append() method. } /** * {@inheritdoc} */ public static function prepend(string $path, string $content) : bool { // TODO: Implement prepend() method. } /** * {@inheritdoc} */ public static function extension(string $path) : string { // TODO: Implement extension() method. } /** * {@inheritdoc} */ public function setContent(string $content) : bool { // TODO: Implement setContent() method. } /** * {@inheritdoc} */ public function appendContent(string $content) : bool { // TODO: Implement appendContent() method. } /** * {@inheritdoc} */ public function prependContent(string $content) : bool { // TODO: Implement prependContent() method. } /** * {@inheritdoc} */ public function getExtension() : string { // TODO: Implement getExtension() method. } }