Completed
Pull Request — master (#21)
by
unknown
04:20
created
src/QwatcherServiceProvider.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
     /**
64 64
      * Get the services provided by the provider.
65 65
      *
66
-     * @return array
66
+     * @return string[]
67 67
      */
68 68
     public function provides()
69 69
     {
Please login to merge, or discard this patch.
src/Tracks/TracksDatabase.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,9 @@
 block discarded – undo
63 63
 
64 64
     protected function getQueueFromJobsTableById($id)
65 65
     {
66
-        if ($this->status != StatusType::CREATE) return;
66
+        if ($this->status != StatusType::CREATE) {
67
+            return;
68
+        }
67 69
 
68 70
         try {
69 71
             return DB::table('jobs')->where('id', $id)->first();
Please login to merge, or discard this patch.