Completed
Pull Request — master (#43)
by
unknown
02:11
created
src/HasBinaryUuid.php 2 patches
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,9 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace Spatie\BinaryUuid;
4 4
 
5
-use Ramsey\Uuid\Uuid;
6
-use Illuminate\Database\Eloquent\Model;
7 5
 use Illuminate\Database\Eloquent\Builder;
6
+use Illuminate\Database\Eloquent\Model;
7
+use Ramsey\Uuid\Uuid;
8 8
 
9 9
 trait HasBinaryUuid
10 10
 {
Please login to merge, or discard this patch.
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -54,6 +54,9 @@
 block discarded – undo
54 54
         return Uuid::uuid1();
55 55
     }
56 56
 
57
+    /**
58
+     * @param string $uuid
59
+     */
57 60
     public static function encodeUuid($uuid): string
58 61
     {
59 62
         if (! Uuid::isValid($uuid)) {
Please login to merge, or discard this patch.