Completed
Push — master ( 252970...4a8c07 )
by Faiz
02:03
created
src/Commands/SurahCommand.php 1 patch
Doc Comments   +11 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,6 +72,10 @@  discard block
 block discarded – undo
72 72
         }
73 73
     }
74 74
 
75
+    /**
76
+     * @param OutputInterface $output
77
+     * @param integer $verse
78
+     */
75 79
     private function chapter($output, $verse)
76 80
     {
77 81
         $surah = $this->quran->getSource()->surah($verse);
@@ -97,6 +101,9 @@  discard block
 block discarded – undo
97 101
         $table->render();
98 102
     }
99 103
 
104
+    /**
105
+     * @param OutputInterface $output
106
+     */
100 107
     private function chapters($output)
101 108
     {
102 109
         $surah = $this->quran->getSource()->chapters();
@@ -113,6 +120,9 @@  discard block
 block discarded – undo
113 120
         $table->render();
114 121
     }
115 122
 
123
+    /**
124
+     * @param integer $columns
125
+     */
116 126
     private function array_chunk_vertical($data, $columns)
117 127
     {
118 128
         $n = count($data);
@@ -140,7 +150,7 @@  discard block
 block discarded – undo
140 150
      * @param InputInterface  $input
141 151
      * @param OutputInterface $output
142 152
      *
143
-     * @return int|null
153
+     * @return integer
144 154
      *
145 155
      * @throws SurahInvalid
146 156
      */
Please login to merge, or discard this patch.