Completed
Push — master ( 87498e...2cd2bb )
by Filipe
06:22
created
src/Mapper/EntityMapper.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@
 block discarded – undo
78 78
      *
79 79
      * @param EntityInterface $entity
80 80
      *
81
-     * @return self|$this|EntityInterface
81
+     * @return EntityMapper
82 82
      */
83 83
     public function delete(EntityInterface $entity)
84 84
     {
Please login to merge, or discard this patch.
src/Mapper/EventTriggers.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
     /**
28 28
      * Triggers the before save event
29 29
      *
30
-     * @param Sql/Update|Sql/Insert $query
30
+     * @param \Slick\Database\Sql\SqlInterface $query
31 31
      * @param EntityInterface $entity
32 32
      * @param array $data
33 33
      *
Please login to merge, or discard this patch.
src/Orm.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -152,7 +152,7 @@
 block discarded – undo
152 152
      * an optional third parameter specifying the priority as an integer. You
153 153
      * may use one of EmitterInterface predefined constants here if you want.
154 154
      *
155
-     * @param string|EntityInterface     $entityClass
155
+     * @param string     $entityClass
156 156
      * @param string                     $event
157 157
      * @param ListenerInterface|callable $listener
158 158
      * @param int                        $priority
Please login to merge, or discard this patch.
src/Entity.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
      *
31 31
      * @param array $data Partial data to save
32 32
      *
33
-     * @return mixed
33
+     * @return Mapper\EntityMapper
34 34
      */
35 35
     public function save(array $data = [])
36 36
     {
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
     /**
43 43
      * Deletes current entity from its storage
44 44
      *
45
-     * @return self|$this|EntityInterface
45
+     * @return Mapper\EntityMapper
46 46
      */
47 47
     public function delete()
48 48
     {
Please login to merge, or discard this patch.