Fix incompatible return type declaration issue

Scrutinizer turned up this issue, since the declared return type in
`UuidBuilderInterface` was of `Uuid` and we weren't properly importing
`\Ramsey\Uuid\Uuid` in a `use` statement.
This commit is contained in:
Ben Ramsey
2015-08-13 10:55:01 -05:00
parent a27ab1b8e9
commit cf1776ebd6
+1
View File
@@ -15,6 +15,7 @@
namespace Ramsey\Uuid\Builder;
use Ramsey\Uuid\Codec\CodecInterface;
use Ramsey\Uuid\Uuid;
interface UuidBuilderInterface
{