Apply CS fixes

This commit is contained in:
adlawson 2014-09-06 15:15:08 +01:00
parent 00ddcea4aa
commit 346ea57616
20 changed files with 115 additions and 115 deletions

View File

@ -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;
}

View File

@ -9,7 +9,6 @@
*/
namespace Vfs\Node;
use DateTime;
use IteratorAggregate;
use Vfs\Exception\ExistingNodeException;
use Vfs\Exception\MissingNodeException;

View File

@ -9,7 +9,6 @@
*/
namespace Vfs\Node\Walker;
use Vfs\Exception\InvalidNodeTypeException;
use Vfs\Node\NodeContainerInterface;
use Vfs\Node\NodeInterface;