Completed
Branch develop (87e81b)
by Phaniraj
11:23
created
src/Events/QueueProcessed.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
     /**
14 14
      * Create a new event instance.
15 15
      *
16
-     * @param  \App\Order  $order
16
+     * @param string $file_name
17 17
      * @return void
18 18
      */
19 19
     public function __construct($file_name,$table_id)
Please login to merge, or discard this patch.
src/Http/Controllers/Exporter.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -69,6 +69,9 @@  discard block
 block discarded – undo
69 69
     }
70 70
 
71 71
 
72
+    /**
73
+     * @param string $file_name
74
+     */
72 75
     public function csv($file_name)
73 76
     {
74 77
         $headers = [
@@ -80,6 +83,9 @@  discard block
 block discarded – undo
80 83
     }
81 84
 
82 85
 
86
+    /**
87
+     * @param string $file_name
88
+     */
83 89
     public function excel($file_name)
84 90
     {
85 91
         $spreadsheet = new Spreadsheet();
@@ -100,6 +106,9 @@  discard block
 block discarded – undo
100 106
         unset($spreadsheet);
101 107
     }
102 108
 
109
+    /**
110
+     * @param string $file_name
111
+     */
103 112
     public function pdf($file_name)
104 113
     {
105 114
 
Please login to merge, or discard this patch.
src/Listeners/QueueResponse.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
     /**
21 21
      * Handle the event.
22 22
      *
23
-     * @param  \App\Events\OrderShipped  $event
23
+     * @param  QueueProcessed  $event
24 24
      * @return void
25 25
      */
26 26
     public function handle(QueueProcessed $event)
Please login to merge, or discard this patch.