Removed redundant interface inheritance.

This commit is contained in:
Bilge
2020-08-23 19:36:53 +01:00
parent d103e07a2c
commit 49b772a5e2
5 changed files with 5 additions and 9 deletions
+1 -2
View File
@@ -15,7 +15,6 @@ declare(strict_types=1);
namespace Ramsey\Uuid\Builder;
use Ramsey\Collection\AbstractCollection;
use Ramsey\Collection\CollectionInterface;
use Ramsey\Uuid\Converter\Number\GenericNumberConverter;
use Ramsey\Uuid\Converter\Time\GenericTimeConverter;
use Ramsey\Uuid\Converter\Time\PhpTimeConverter;
@@ -28,7 +27,7 @@ use Traversable;
/**
* A collection of UuidBuilderInterface objects
*/
class BuilderCollection extends AbstractCollection implements CollectionInterface
class BuilderCollection extends AbstractCollection
{
public function getType(): string
{