@@ -2,8 +2,8 @@ |
||
2 | 2 | |
3 | 3 | namespace FaizShukri\Quran\Commands; |
4 | 4 | |
5 | -use FaizShukri\Quran\Supports\Config; |
|
6 | 5 | use FaizShukri\Quran\Repositories\Source\XMLRepository; |
6 | +use FaizShukri\Quran\Supports\Config; |
|
7 | 7 | use Symfony\Component\Console\Command\Command; |
8 | 8 | use Symfony\Component\Console\Input\InputInterface; |
9 | 9 | use Symfony\Component\Console\Output\OutputInterface; |
@@ -83,6 +83,10 @@ discard block |
||
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 |
||
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 |
||
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); |