Completed
Push — master ( e9c310...fb54d7 )
by Ricardo
11:25
created
src/GamerProvider.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -196,7 +196,7 @@
 block discarded – undo
196 196
     /**
197 197
      * Get the services provided by the provider.
198 198
      *
199
-     * @return array
199
+     * @return string[]
200 200
      */
201 201
     public function provides()
202 202
     {
Please login to merge, or discard this patch.
src/Jobs/RoutineOrganizerCreateJob.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
     /**
36 36
      * Execute the job.
37 37
      *
38
-     * @return void
38
+     * @return boolean
39 39
      */
40 40
     public function handle()
41 41
     {
Please login to merge, or discard this patch.
src/Jobs/Sms.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
     /**
31 31
      * Execute the job.
32 32
      *
33
-     * @return void
33
+     * @return boolean
34 34
      */
35 35
     public function handle()
36 36
     {
Please login to merge, or discard this patch.
src/Observers/BaseObserver.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -25,6 +25,9 @@
 block discarded – undo
25 25
     protected $action = false;
26 26
     
27 27
 
28
+    /**
29
+     * @param string $event
30
+     */
28 31
     protected function isToIgnore($model, $event)
29 32
     {
30 33
         // Don't log changes to pivot models.  Even though a user may have initiated
Please login to merge, or discard this patch.
src/Traits/Pointable.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
 
78 78
     /**
79 79
      *
80
-     * @return double
80
+     * @return Transaction
81 81
      */
82 82
     public function currentPoints()
83 83
     {
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
      * @param $message
90 90
      * @param $data
91 91
      *
92
-     * @return static
92
+     * @return Transaction
93 93
      */
94 94
     public function addPoints($amount, $message, $data = null)
95 95
     {
Please login to merge, or discard this patch.