Completed
Branch master (a17b64)
by Rémi
15:50
created
src/EntityMap.php 1 patch
Doc Comments   +1 added lines, -3 removed lines patch added patch discarded remove patch
@@ -808,7 +808,6 @@  discard block
 block discarded – undo
808 808
      * @param  string      $related
809 809
      * @param  string|null $foreignKey
810 810
      * @param  string|null $otherKey
811
-     * @param  string|null $relation
812 811
      * @throws MappingException
813 812
      * @return \Analogue\ORM\Relationships\BelongsTo
814 813
      */
@@ -1004,11 +1003,10 @@  discard block
 block discarded – undo
1004 1003
      * Define a many-to-many relationship.
1005 1004
      *
1006 1005
      * @param  mixed       $entity
1007
-     * @param  string      $relatedClass
1006
+     * @param  string      $related
1008 1007
      * @param  string|null $table
1009 1008
      * @param  string|null $foreignKey
1010 1009
      * @param  string|null $otherKey
1011
-     * @param  string|null $relation
1012 1010
      * @throws MappingException
1013 1011
      * @return \Analogue\ORM\Relationships\BelongsToMany
1014 1012
      */
Please login to merge, or discard this patch.
src/System/Proxies/CollectionProxy.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -209,7 +209,7 @@
 block discarded – undo
209 209
      *
210 210
      * @param  int  $step
211 211
      * @param  int  $offset
212
-     * @return static
212
+     * @return boolean
213 213
      */
214 214
     public function every($step, $offset = 0)
215 215
     {
Please login to merge, or discard this patch.
src/System/Query.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -179,7 +179,7 @@
 block discarded – undo
179 179
      * @param  mixed $id
180 180
      * @param  array $columns
181 181
      * @throws \Analogue\ORM\Exceptions\EntityNotFoundException
182
-     * @return mixed|self
182
+     * @return \Analogue\ORM\Mappable
183 183
      */
184 184
     public function findOrFail($id, $columns = ['*'])
185 185
     {
Please login to merge, or discard this patch.
src/System/Wrappers/Wrapper.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
     /**
46 46
      * Return the wrapped entity class
47 47
      *
48
-     * @return mixed
48
+     * @return string
49 49
      */
50 50
     public function getEntityClass()
51 51
     {
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
     /**
66 66
      * Returns the wrapped entity's map
67 67
      *
68
-     * @return mixed
68
+     * @return \Analogue\ORM\EntityMap
69 69
      */
70 70
     public function getMap()
71 71
     {
Please login to merge, or discard this patch.