Completed
Push — master ( 8655d6...da003c )
by Faiz
06:46
created
src/Commands/SurahCommand.php 1 patch
Doc Comments   +10 added lines patch added patch discarded remove patch
@@ -83,6 +83,10 @@  discard block
 block discarded – undo
83 83
         return 0;
84 84
     }
85 85
 
86
+    /**
87
+     * @param OutputInterface $output
88
+     * @param integer $verse
89
+     */
86 90
     private function chapter($output, $verse)
87 91
     {
88 92
         $surah = $this->quran->getSource()->surah($verse);
@@ -109,6 +113,9 @@  discard block
 block discarded – undo
109 113
         $output->writeln("");
110 114
     }
111 115
 
116
+    /**
117
+     * @param OutputInterface $output
118
+     */
112 119
     private function chapters($output)
113 120
     {
114 121
         $surah = $this->quran->getSource()->surah();
@@ -125,6 +132,9 @@  discard block
 block discarded – undo
125 132
         $table->render();
126 133
     }
127 134
 
135
+    /**
136
+     * @param integer $columns
137
+     */
128 138
     private function array_chunk_vertical($data, $columns)
129 139
     {
130 140
         $n = count($data);
Please login to merge, or discard this patch.