mirror of
https://github.com/adlawson/php-vfs.git
synced 2024-11-24 05:37:37 +00:00
Apply CS fixes
This commit is contained in:
parent
00ddcea4aa
commit
346ea57616
@ -115,6 +115,7 @@ class FileSystem implements FileSystemInterface
|
|||||||
|
|
||||||
if (stream_wrapper_register($this->scheme, $this->wrapperClass)) {
|
if (stream_wrapper_register($this->scheme, $this->wrapperClass)) {
|
||||||
$this->registry->add($this->scheme, $this);
|
$this->registry->add($this->scheme, $this);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -132,6 +133,7 @@ class FileSystem implements FileSystemInterface
|
|||||||
|
|
||||||
if (stream_wrapper_unregister($this->scheme)) {
|
if (stream_wrapper_unregister($this->scheme)) {
|
||||||
$this->registry->remove($this->scheme, $this);
|
$this->registry->remove($this->scheme, $this);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -9,7 +9,6 @@
|
|||||||
*/
|
*/
|
||||||
namespace Vfs\Node;
|
namespace Vfs\Node;
|
||||||
|
|
||||||
use DateTime;
|
|
||||||
use IteratorAggregate;
|
use IteratorAggregate;
|
||||||
use Vfs\Exception\ExistingNodeException;
|
use Vfs\Exception\ExistingNodeException;
|
||||||
use Vfs\Exception\MissingNodeException;
|
use Vfs\Exception\MissingNodeException;
|
||||||
|
@ -9,7 +9,6 @@
|
|||||||
*/
|
*/
|
||||||
namespace Vfs\Node\Walker;
|
namespace Vfs\Node\Walker;
|
||||||
|
|
||||||
use Vfs\Exception\InvalidNodeTypeException;
|
|
||||||
use Vfs\Node\NodeContainerInterface;
|
use Vfs\Node\NodeContainerInterface;
|
||||||
use Vfs\Node\NodeInterface;
|
use Vfs\Node\NodeInterface;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user