Completed
Push — master ( 74e877...60d1ae )
by Christopher
02:05
created
src/Contracts/Domain/Entity.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@  discard block
 block discarded – undo
6 6
      * Constructor
7 7
      *
8 8
      * Instantiate an Entity using its identifier.
9
-     * @param  ValueObjectInterface $identifier The identity Value Object.
9
+     * @param  ValueObject $identifier The identity Value Object.
10 10
      * @return static
11 11
      */
12 12
     public function __construct(ValueObject $identifier);
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
      * Get Id
16 16
      *
17 17
      * Return the identifier Value Object.
18
-     * @return ValueObjectInterface
18
+     * @return ValueObject
19 19
      */
20 20
     public function getId();
21 21
 
Please login to merge, or discard this patch.
src/Event/Store.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 use C4tech\RayEmitter\Contracts\Domain\Event as EventInterface;
4 4
 use C4tech\RayEmitter\Contracts\Event\Store as StoreInterface;
5 5
 use Illuminate\Support\Facades\Event as EventBus;
6
-use Illuminate\Support\Facades\Log;
7 6
 use Illuminate\Database\Eloquent\Model;
8 7
 
9 8
 class Store extends Model implements StoreInterface
Please login to merge, or discard this patch.