Completed
Push — master ( 1e296c...dace5d )
by Faiz
02:40
created
src/Commands/TranslationListCommand.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
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);
@@ -108,6 +112,9 @@  discard block
 block discarded – undo
108 112
         $table->render();
109 113
     }
110 114
 
115
+    /**
116
+     * @param OutputInterface $output
117
+     */
111 118
     private function chapters($output)
112 119
     {
113 120
         $surah = $this->quran->getSource()->surah();
@@ -124,6 +131,9 @@  discard block
 block discarded – undo
124 131
         $table->render();
125 132
     }
126 133
 
134
+    /**
135
+     * @param integer $columns
136
+     */
127 137
     private function array_chunk_vertical($data, $columns)
128 138
     {
129 139
         $n = count($data);
Please login to merge, or discard this patch.