Completed
Push — master ( 5ede7e...4a5475 )
by Tom
15:05
created
generator/Writer/Filesystem.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,8 +3,8 @@
 block discarded – undo
3 3
 namespace Spatie\SchemaOrg\Generator\Writer;
4 4
 
5 5
 use League\Flysystem\Adapter\Local;
6
-use Spatie\SchemaOrg\Generator\Type;
7 6
 use League\Flysystem\Filesystem as Flysystem;
7
+use Spatie\SchemaOrg\Generator\Type;
8 8
 use Spatie\SchemaOrg\Generator\TypeCollection;
9 9
 
10 10
 class Filesystem
Please login to merge, or discard this patch.
src/Graph.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,11 +2,11 @@
 block discarded – undo
2 2
 
3 3
 namespace Spatie\SchemaOrg;
4 4
 
5
-use ReflectionClass;
6 5
 use BadMethodCallException;
6
+use ReflectionClass;
7 7
 use Spatie\SchemaOrg\Exceptions\InvalidType;
8
-use Spatie\SchemaOrg\Exceptions\TypeNotInGraph;
9 8
 use Spatie\SchemaOrg\Exceptions\TypeAlreadyInGraph;
9
+use Spatie\SchemaOrg\Exceptions\TypeNotInGraph;
10 10
 
11 11
 /**
12 12
  * @mixin \Spatie\SchemaOrg\Schema
Please login to merge, or discard this patch.
src/BaseType.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,11 +2,11 @@
 block discarded – undo
2 2
 
3 3
 namespace Spatie\SchemaOrg;
4 4
 
5
-use DateTime;
6 5
 use ArrayAccess;
7
-use ReflectionClass;
8
-use JsonSerializable;
6
+use DateTime;
9 7
 use DateTimeInterface;
8
+use JsonSerializable;
9
+use ReflectionClass;
10 10
 use Spatie\SchemaOrg\Exceptions\InvalidProperty;
11 11
 
12 12
 abstract class BaseType implements Type, ArrayAccess, JsonSerializable
Please login to merge, or discard this patch.