Completed
Push — master ( 91e96e...a624e1 )
by Nassif
07:35 queued 48s
created
src/Sheet/TranslationsSheetCoordinates.php 1 patch
Doc Comments   +11 added lines patch added patch discarded remove patch
@@ -34,6 +34,11 @@  discard block
 block discarded – undo
34 34
         return $this;
35 35
     }
36 36
 
37
+    /**
38
+     * @param integer $columnsCount
39
+     * @param integer $localesCount
40
+     * @param integer $headerRowsCount
41
+     */
37 42
     public static function emptySheet($columnsCount, $localesCount, $headerRowsCount)
38 43
     {
39 44
         $instance = new self;
@@ -46,6 +51,12 @@  discard block
 block discarded – undo
46 51
         return $instance;
47 52
     }
48 53
 
54
+    /**
55
+     * @param integer $dataRowsCount
56
+     * @param integer $columnsCount
57
+     * @param integer $localesCount
58
+     * @param integer $headerRowsCount
59
+     */
49 60
     public static function sheetWithData($dataRowsCount, $columnsCount, $localesCount, $headerRowsCount)
50 61
     {
51 62
         $instance = new self;
Please login to merge, or discard this patch.
src/TranslationSheetServiceProvider.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,12 +6,12 @@
 block discarded – undo
6 6
 use Nikaia\TranslationSheet\Client\Client;
7 7
 use Nikaia\TranslationSheet\Commands\Lock;
8 8
 use Nikaia\TranslationSheet\Commands\Open;
9
+use Nikaia\TranslationSheet\Commands\Prepare;
9 10
 use Nikaia\TranslationSheet\Commands\Pull;
10 11
 use Nikaia\TranslationSheet\Commands\Push;
11 12
 use Nikaia\TranslationSheet\Commands\Setup;
12 13
 use Nikaia\TranslationSheet\Commands\Status;
13 14
 use Nikaia\TranslationSheet\Commands\Unlock;
14
-use Nikaia\TranslationSheet\Commands\Prepare;
15 15
 
16 16
 class TranslationSheetServiceProvider extends ServiceProvider
17 17
 {
Please login to merge, or discard this patch.