From cf1776ebd64f89a9bc81d1f13f3adb26c13257b7 Mon Sep 17 00:00:00 2001 From: Ben Ramsey Date: Thu, 13 Aug 2015 10:55:01 -0500 Subject: [PATCH] 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. --- src/Builder/UuidBuilderInterface.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Builder/UuidBuilderInterface.php b/src/Builder/UuidBuilderInterface.php index 3bfc715..f80ec30 100644 --- a/src/Builder/UuidBuilderInterface.php +++ b/src/Builder/UuidBuilderInterface.php @@ -15,6 +15,7 @@ namespace Ramsey\Uuid\Builder; use Ramsey\Uuid\Codec\CodecInterface; +use Ramsey\Uuid\Uuid; interface UuidBuilderInterface {