Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: vfsStreamAbstractVisitor.php
<?php /** * This file is part of vfsStream. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * * @package org\bovigo\vfs */ namespace org\bovigo\vfs\visitor; use org\bovigo\vfs\vfsStreamContent; /** * Abstract base class providing an implementation for the visit() method. * * @since 0.10.0 * @see https://github.com/mikey179/vfsStream/issues/10 */ abstract class vfsStreamAbstractVisitor implements vfsStreamVisitor { /** * visit a content and process it * * @param vfsStreamContent $content * @return vfsStreamVisitor * @throws \InvalidArgumentException */ public function visit(vfsStreamContent $content) { switch ($content->getType()) { case vfsStreamContent::TYPE_FILE: $this->visitFile($content); break; case vfsStreamContent::TYPE_DIR: $this->visitDirectory($content); break; default: throw new \InvalidArgumentException('Unknown content type ' . $content->getType() . ' for ' . $content->getName()); } return $this; } } ?>