Completed
Push — master ( 5cc558...d43284 )
by Ryan
11:03 queued 05:19
created
src/Support/_helpers.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -59,8 +59,8 @@
 block discarded – undo
59 59
      * Get an item from an array or object using "dot" notation.
60 60
      *
61 61
      * @param  mixed        $target
62
-     * @param  string|array $key
63
-     * @param  mixed        $default
62
+     * @param  string $key
63
+     * @param  string        $default
64 64
      * @return mixed
65 65
      */
66 66
     function data($target, $key, $default = null)
Please login to merge, or discard this patch.
src/Database/Migration/Migrator.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -211,7 +211,6 @@
 block discarded – undo
211 211
     /**
212 212
      * Clear the addon.
213 213
      *
214
-     * @param Addon $addon
215 214
      */
216 215
     public function clearAddon()
217 216
     {
Please login to merge, or discard this patch.
src/Entry/EntryObserver.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
     /**
115 115
      * Run before a record is deleted.
116 116
      *
117
-     * @param  EntryInterface|EloquentModel $entry
117
+     * @param  EntryInterface $entry
118 118
      * @return bool
119 119
      */
120 120
     public function deleting(EntryInterface $entry)
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
     /**
155 155
      * Fired just before restoring.
156 156
      *
157
-     * @param EntryInterface|EloquentModel $entry
157
+     * @param EntryInterface $entry
158 158
      */
159 159
     public function restoring(EntryInterface $entry)
160 160
     {
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
     /**
165 165
      * Run after a record has been restored.
166 166
      *
167
-     * @param EntryInterface|EloquentModel $entry
167
+     * @param EntryInterface $entry
168 168
      */
169 169
     public function restored(EntryInterface $entry)
170 170
     {
Please login to merge, or discard this patch.