mirror of
https://github.com/adlawson/php-vfs.git
synced 2024-11-23 21:27:39 +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)) {
|
||||
$this->registry->add($this->scheme, $this);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
@ -132,6 +133,7 @@ class FileSystem implements FileSystemInterface
|
||||
|
||||
if (stream_wrapper_unregister($this->scheme)) {
|
||||
$this->registry->remove($this->scheme, $this);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -9,7 +9,6 @@
|
||||
*/
|
||||
namespace Vfs\Node;
|
||||
|
||||
use DateTime;
|
||||
use IteratorAggregate;
|
||||
use Vfs\Exception\ExistingNodeException;
|
||||
use Vfs\Exception\MissingNodeException;
|
||||
|
@ -9,7 +9,6 @@
|
||||
*/
|
||||
namespace Vfs\Node\Walker;
|
||||
|
||||
use Vfs\Exception\InvalidNodeTypeException;
|
||||
use Vfs\Node\NodeContainerInterface;
|
||||
use Vfs\Node\NodeInterface;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user