Completed
Push — master ( 0f2825...5d2ef8 )
by Mewes
02:18
created
Tests/Twig/AbstractTwigTest.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -60,11 +60,11 @@  discard block
 block discarded – undo
60 60
         $appVariable->setRequestStack($requestStack);
61 61
 
62 62
         // generate source from template
63
-        $source = static::$environment->loadTemplate($templateName . '.twig')->render(['app' => $appVariable]);
63
+        $source = static::$environment->loadTemplate($templateName.'.twig')->render(['app' => $appVariable]);
64 64
 
65 65
         // create paths
66
-        $tempDirPath = __DIR__ . static::$TEMP_PATH;
67
-        $tempFilePath = $tempDirPath . $templateName . '.' . $format;
66
+        $tempDirPath = __DIR__.static::$TEMP_PATH;
67
+        $tempFilePath = $tempDirPath.$templateName.'.'.$format;
68 68
 
69 69
         // save source
70 70
         static::$fileSystem->dumpFile($tempFilePath, $source);
@@ -107,12 +107,12 @@  discard block
 block discarded – undo
107 107
     {
108 108
         static::$fileSystem = new Filesystem();
109 109
         
110
-        $twigFileSystem = new Twig_Loader_Filesystem([__DIR__ . static::$RESOURCE_PATH]);
111
-        $twigFileSystem->addPath( __DIR__ . static::$TEMPLATE_PATH, 'templates');
110
+        $twigFileSystem = new Twig_Loader_Filesystem([__DIR__.static::$RESOURCE_PATH]);
111
+        $twigFileSystem->addPath(__DIR__.static::$TEMPLATE_PATH, 'templates');
112 112
         
113 113
         static::$environment = new Twig_Environment($twigFileSystem, ['strict_variables' => true]);
114 114
         static::$environment->addExtension(new TwigExcelExtension());
115
-        static::$environment->setCache(__DIR__ . static::$TEMP_PATH);
115
+        static::$environment->setCache(__DIR__.static::$TEMP_PATH);
116 116
     }
117 117
 
118 118
     /**
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
     public static function tearDownAfterClass()
123 123
     {
124 124
         if (in_array(getenv('DELETE_TEMP_FILES'), ['true', '1', 1, true], true)) {
125
-            static::$fileSystem->remove(__DIR__ . static::$TEMP_PATH);
125
+            static::$fileSystem->remove(__DIR__.static::$TEMP_PATH);
126 126
         }
127 127
     }
128 128
 }
Please login to merge, or discard this patch.
Wrapper/XlsCellWrapper.php 1 patch
Spacing   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -60,61 +60,61 @@
 block discarded – undo
60 60
 
61 61
     protected function initializeMappings()
62 62
     {
63
-        $this->mappings['break'] = function ($value) {
63
+        $this->mappings['break'] = function($value) {
64 64
             $this->sheetWrapper->getObject()->setBreak($this->object->getCoordinate(), $value);
65 65
         };
66
-        $this->mappings['dataType'] = function ($value) {
66
+        $this->mappings['dataType'] = function($value) {
67 67
             $this->object->setDataType($value);
68 68
         };
69
-        $this->mappings['dataValidation']['allowBlank'] = function ($value) {
69
+        $this->mappings['dataValidation']['allowBlank'] = function($value) {
70 70
             $this->object->getDataValidation()->setAllowBlank($value);
71 71
         };
72
-        $this->mappings['dataValidation']['error'] = function ($value) {
72
+        $this->mappings['dataValidation']['error'] = function($value) {
73 73
             $this->object->getDataValidation()->setError($value);
74 74
         };
75
-        $this->mappings['dataValidation']['errorStyle'] = function ($value) {
75
+        $this->mappings['dataValidation']['errorStyle'] = function($value) {
76 76
             $this->object->getDataValidation()->setErrorStyle($value);
77 77
         };
78
-        $this->mappings['dataValidation']['errorTitle'] = function ($value) {
78
+        $this->mappings['dataValidation']['errorTitle'] = function($value) {
79 79
             $this->object->getDataValidation()->setErrorTitle($value);
80 80
         };
81
-        $this->mappings['dataValidation']['formula1'] = function ($value) {
81
+        $this->mappings['dataValidation']['formula1'] = function($value) {
82 82
             $this->object->getDataValidation()->setFormula1($value);
83 83
         };
84
-        $this->mappings['dataValidation']['formula2'] = function ($value) {
84
+        $this->mappings['dataValidation']['formula2'] = function($value) {
85 85
             $this->object->getDataValidation()->setFormula2($value);
86 86
         };
87
-        $this->mappings['dataValidation']['operator'] = function ($value) {
87
+        $this->mappings['dataValidation']['operator'] = function($value) {
88 88
             $this->object->getDataValidation()->setOperator($value);
89 89
         };
90
-        $this->mappings['dataValidation']['prompt'] = function ($value) {
90
+        $this->mappings['dataValidation']['prompt'] = function($value) {
91 91
             $this->object->getDataValidation()->setPrompt($value);
92 92
         };
93
-        $this->mappings['dataValidation']['promptTitle'] = function ($value) {
93
+        $this->mappings['dataValidation']['promptTitle'] = function($value) {
94 94
             $this->object->getDataValidation()->setPromptTitle($value);
95 95
         };
96
-        $this->mappings['dataValidation']['showDropDown'] = function ($value) {
96
+        $this->mappings['dataValidation']['showDropDown'] = function($value) {
97 97
             $this->object->getDataValidation()->setShowDropDown($value);
98 98
         };
99
-        $this->mappings['dataValidation']['showErrorMessage'] = function ($value) {
99
+        $this->mappings['dataValidation']['showErrorMessage'] = function($value) {
100 100
             $this->object->getDataValidation()->setShowErrorMessage($value);
101 101
         };
102
-        $this->mappings['dataValidation']['showInputMessage'] = function ($value) {
102
+        $this->mappings['dataValidation']['showInputMessage'] = function($value) {
103 103
             $this->object->getDataValidation()->setShowInputMessage($value);
104 104
         };
105
-        $this->mappings['dataValidation']['type'] = function ($value) {
105
+        $this->mappings['dataValidation']['type'] = function($value) {
106 106
             $this->object->getDataValidation()->setType($value);
107 107
         };
108
-        $this->mappings['merge'] = function ($value) {
108
+        $this->mappings['merge'] = function($value) {
109 109
             if (is_int($value)) {
110
-                $value = PHPExcel_Cell::stringFromColumnIndex($value) . $this->sheetWrapper->getRow();
110
+                $value = PHPExcel_Cell::stringFromColumnIndex($value).$this->sheetWrapper->getRow();
111 111
             }
112 112
             $this->sheetWrapper->getObject()->mergeCells(sprintf('%s:%s', $this->object->getCoordinate(), $value));
113 113
         };
114
-        $this->mappings['style'] = function ($value) {
114
+        $this->mappings['style'] = function($value) {
115 115
             $this->sheetWrapper->getObject()->getStyle($this->object->getCoordinate())->applyFromArray($value);
116 116
         };
117
-        $this->mappings['url'] = function ($value) {
117
+        $this->mappings['url'] = function($value) {
118 118
             $this->object->getHyperlink()->setUrl($value);
119 119
         };
120 120
     }
Please login to merge, or discard this patch.
Wrapper/XlsSheetWrapper.php 1 patch
Spacing   +57 added lines, -57 removed lines patch added patch discarded remove patch
@@ -77,171 +77,171 @@  discard block
 block discarded – undo
77 77
 
78 78
     protected function initializeMappings()
79 79
     {
80
-        $this->mappings['autoFilter'] = function ($value) {
80
+        $this->mappings['autoFilter'] = function($value) {
81 81
             $this->object->setAutoFilter($value);
82 82
         };
83 83
         $this->mappings['columnDimension']['__multi'] = true;
84
-        $this->mappings['columnDimension']['__object'] = function ($key = 'default') {
84
+        $this->mappings['columnDimension']['__object'] = function($key = 'default') {
85 85
             return $key === 'default' ? $this->object->getDefaultColumnDimension() : $this->object->getColumnDimension($key);
86 86
         };
87
-        $this->mappings['columnDimension']['autoSize'] = function ($key, $value) {
87
+        $this->mappings['columnDimension']['autoSize'] = function($key, $value) {
88 88
             $this->mappings['columnDimension']['__object']($key)->setAutoSize($value);
89 89
         };
90
-        $this->mappings['columnDimension']['collapsed'] = function ($key, $value) {
90
+        $this->mappings['columnDimension']['collapsed'] = function($key, $value) {
91 91
             $this->mappings['columnDimension']['__object']($key)->setCollapsed($value);
92 92
         };
93
-        $this->mappings['columnDimension']['columnIndex'] = function ($key, $value) {
93
+        $this->mappings['columnDimension']['columnIndex'] = function($key, $value) {
94 94
             $this->mappings['columnDimension']['__object']($key)->setColumnIndex($value);
95 95
         };
96
-        $this->mappings['columnDimension']['outlineLevel'] = function ($key, $value) {
96
+        $this->mappings['columnDimension']['outlineLevel'] = function($key, $value) {
97 97
             $this->mappings['columnDimension']['__object']($key)->setOutlineLevel($value);
98 98
         };
99
-        $this->mappings['columnDimension']['visible'] = function ($key, $value) {
99
+        $this->mappings['columnDimension']['visible'] = function($key, $value) {
100 100
             $this->mappings['columnDimension']['__object']($key)->setVisible($value);
101 101
         };
102
-        $this->mappings['columnDimension']['width'] = function ($key, $value) {
102
+        $this->mappings['columnDimension']['width'] = function($key, $value) {
103 103
             $this->mappings['columnDimension']['__object']($key)->setWidth($value);
104 104
         };
105
-        $this->mappings['columnDimension']['xfIndex'] = function ($key, $value) {
105
+        $this->mappings['columnDimension']['xfIndex'] = function($key, $value) {
106 106
             $this->mappings['columnDimension']['__object']($key)->setXfIndex($value);
107 107
         };
108
-        $this->mappings['pageMargins']['top'] = function ($value) {
108
+        $this->mappings['pageMargins']['top'] = function($value) {
109 109
             $this->object->getPageMargins()->setTop($value);
110 110
         };
111
-        $this->mappings['pageMargins']['bottom'] = function ($value) {
111
+        $this->mappings['pageMargins']['bottom'] = function($value) {
112 112
             $this->object->getPageMargins()->setBottom($value);
113 113
         };
114
-        $this->mappings['pageMargins']['left'] = function ($value) {
114
+        $this->mappings['pageMargins']['left'] = function($value) {
115 115
             $this->object->getPageMargins()->setLeft($value);
116 116
         };
117
-        $this->mappings['pageMargins']['right'] = function ($value) {
117
+        $this->mappings['pageMargins']['right'] = function($value) {
118 118
             $this->object->getPageMargins()->setRight($value);
119 119
         };
120
-        $this->mappings['pageMargins']['header'] = function ($value) {
120
+        $this->mappings['pageMargins']['header'] = function($value) {
121 121
             $this->object->getPageMargins()->setHeader($value);
122 122
         };
123
-        $this->mappings['pageMargins']['footer'] = function ($value) {
123
+        $this->mappings['pageMargins']['footer'] = function($value) {
124 124
             $this->object->getPageMargins()->setFooter($value);
125 125
         };
126
-        $this->mappings['pageSetup']['fitToHeight'] = function ($value) {
126
+        $this->mappings['pageSetup']['fitToHeight'] = function($value) {
127 127
             $this->object->getPageSetup()->setFitToHeight($value);
128 128
         };
129
-        $this->mappings['pageSetup']['fitToPage'] = function ($value) {
129
+        $this->mappings['pageSetup']['fitToPage'] = function($value) {
130 130
             $this->object->getPageSetup()->setFitToPage($value);
131 131
         };
132
-        $this->mappings['pageSetup']['fitToWidth'] = function ($value) {
132
+        $this->mappings['pageSetup']['fitToWidth'] = function($value) {
133 133
             $this->object->getPageSetup()->setFitToWidth($value);
134 134
         };
135
-        $this->mappings['pageSetup']['horizontalCentered'] = function ($value) {
135
+        $this->mappings['pageSetup']['horizontalCentered'] = function($value) {
136 136
             $this->object->getPageSetup()->setHorizontalCentered($value);
137 137
         };
138
-        $this->mappings['pageSetup']['orientation'] = function ($value) {
138
+        $this->mappings['pageSetup']['orientation'] = function($value) {
139 139
             $this->object->getPageSetup()->setOrientation($value);
140 140
         };
141
-        $this->mappings['pageSetup']['paperSize'] = function ($value) {
141
+        $this->mappings['pageSetup']['paperSize'] = function($value) {
142 142
             $this->object->getPageSetup()->setPaperSize($value);
143 143
         };
144
-        $this->mappings['pageSetup']['printArea'] = function ($value) {
144
+        $this->mappings['pageSetup']['printArea'] = function($value) {
145 145
             $this->object->getPageSetup()->setPrintArea($value);
146 146
         };
147
-        $this->mappings['pageSetup']['scale'] = function ($value) {
147
+        $this->mappings['pageSetup']['scale'] = function($value) {
148 148
             $this->object->getPageSetup()->setScale($value);
149 149
         };
150
-        $this->mappings['pageSetup']['verticalCentered'] = function ($value) {
150
+        $this->mappings['pageSetup']['verticalCentered'] = function($value) {
151 151
             $this->object->getPageSetup()->setVerticalCentered($value);
152 152
         };
153
-        $this->mappings['printGridlines'] = function ($value) {
153
+        $this->mappings['printGridlines'] = function($value) {
154 154
             $this->object->setPrintGridlines($value);
155 155
         };
156
-        $this->mappings['protection']['autoFilter'] = function ($value) {
156
+        $this->mappings['protection']['autoFilter'] = function($value) {
157 157
             $this->object->getProtection()->setAutoFilter($value);
158 158
         };
159
-        $this->mappings['protection']['deleteColumns'] = function ($value) {
159
+        $this->mappings['protection']['deleteColumns'] = function($value) {
160 160
             $this->object->getProtection()->setDeleteColumns($value);
161 161
         };
162
-        $this->mappings['protection']['deleteRows'] = function ($value) {
162
+        $this->mappings['protection']['deleteRows'] = function($value) {
163 163
             $this->object->getProtection()->setDeleteRows($value);
164 164
         };
165
-        $this->mappings['protection']['formatCells'] = function ($value) {
165
+        $this->mappings['protection']['formatCells'] = function($value) {
166 166
             $this->object->getProtection()->setFormatCells($value);
167 167
         };
168
-        $this->mappings['protection']['formatColumns'] = function ($value) {
168
+        $this->mappings['protection']['formatColumns'] = function($value) {
169 169
             $this->object->getProtection()->setFormatColumns($value);
170 170
         };
171
-        $this->mappings['protection']['formatRows'] = function ($value) {
171
+        $this->mappings['protection']['formatRows'] = function($value) {
172 172
             $this->object->getProtection()->setFormatRows($value);
173 173
         };
174
-        $this->mappings['protection']['insertColumns'] = function ($value) {
174
+        $this->mappings['protection']['insertColumns'] = function($value) {
175 175
             $this->object->getProtection()->setInsertColumns($value);
176 176
         };
177
-        $this->mappings['protection']['insertHyperlinks'] = function ($value) {
177
+        $this->mappings['protection']['insertHyperlinks'] = function($value) {
178 178
             $this->object->getProtection()->setInsertHyperlinks($value);
179 179
         };
180
-        $this->mappings['protection']['insertRows'] = function ($value) {
180
+        $this->mappings['protection']['insertRows'] = function($value) {
181 181
             $this->object->getProtection()->setInsertRows($value);
182 182
         };
183
-        $this->mappings['protection']['objects'] = function ($value) {
183
+        $this->mappings['protection']['objects'] = function($value) {
184 184
             $this->object->getProtection()->setObjects($value);
185 185
         };
186
-        $this->mappings['protection']['password'] = function ($value) {
186
+        $this->mappings['protection']['password'] = function($value) {
187 187
             $this->object->getProtection()->setPassword($value);
188 188
         };
189
-        $this->mappings['protection']['pivotTables'] = function ($value) {
189
+        $this->mappings['protection']['pivotTables'] = function($value) {
190 190
             $this->object->getProtection()->setPivotTables($value);
191 191
         };
192
-        $this->mappings['protection']['scenarios'] = function ($value) {
192
+        $this->mappings['protection']['scenarios'] = function($value) {
193 193
             $this->object->getProtection()->setScenarios($value);
194 194
         };
195
-        $this->mappings['protection']['selectLockedCells'] = function ($value) {
195
+        $this->mappings['protection']['selectLockedCells'] = function($value) {
196 196
             $this->object->getProtection()->setSelectLockedCells($value);
197 197
         };
198
-        $this->mappings['protection']['selectUnlockedCells'] = function ($value) {
198
+        $this->mappings['protection']['selectUnlockedCells'] = function($value) {
199 199
             $this->object->getProtection()->setSelectUnlockedCells($value);
200 200
         };
201
-        $this->mappings['protection']['sheet'] = function ($value) {
201
+        $this->mappings['protection']['sheet'] = function($value) {
202 202
             $this->object->getProtection()->setSheet($value);
203 203
         };
204
-        $this->mappings['protection']['sort'] = function ($value) {
204
+        $this->mappings['protection']['sort'] = function($value) {
205 205
             $this->object->getProtection()->setSort($value);
206 206
         };
207
-        $this->mappings['rightToLeft'] = function ($value) {
207
+        $this->mappings['rightToLeft'] = function($value) {
208 208
             $this->object->setRightToLeft($value);
209 209
         };
210 210
         $this->mappings['rowDimension']['__multi'] = true;
211
-        $this->mappings['rowDimension']['__object'] = function ($key) {
211
+        $this->mappings['rowDimension']['__object'] = function($key) {
212 212
             return $key === 'default' ? $this->object->getDefaultRowDimension() : $this->object->getRowDimension($key);
213 213
         };
214
-        $this->mappings['rowDimension']['collapsed'] = function ($key, $value) {
214
+        $this->mappings['rowDimension']['collapsed'] = function($key, $value) {
215 215
             $this->mappings['rowDimension']['__object']($key)->setCollapsed($value);
216 216
         };
217
-        $this->mappings['rowDimension']['outlineLevel'] = function ($key, $value) {
217
+        $this->mappings['rowDimension']['outlineLevel'] = function($key, $value) {
218 218
             $this->mappings['rowDimension']['__object']($key)->setOutlineLevel($value);
219 219
         };
220
-        $this->mappings['rowDimension']['rowHeight'] = function ($key, $value) {
220
+        $this->mappings['rowDimension']['rowHeight'] = function($key, $value) {
221 221
             $this->mappings['rowDimension']['__object']($key)->setRowHeight($value);
222 222
         };
223
-        $this->mappings['rowDimension']['rowIndex'] = function ($key, $value) {
223
+        $this->mappings['rowDimension']['rowIndex'] = function($key, $value) {
224 224
             $this->mappings['rowDimension']['__object']($key)->setRowIndex($value);
225 225
         };
226
-        $this->mappings['rowDimension']['visible'] = function ($key, $value) {
226
+        $this->mappings['rowDimension']['visible'] = function($key, $value) {
227 227
             $this->mappings['rowDimension']['__object']($key)->setVisible($value);
228 228
         };
229
-        $this->mappings['rowDimension']['xfIndex'] = function ($key, $value) {
229
+        $this->mappings['rowDimension']['xfIndex'] = function($key, $value) {
230 230
             $this->mappings['rowDimension']['__object']($key)->setXfIndex($value);
231 231
         };
232
-        $this->mappings['rowDimension']['zeroHeight'] = function ($key, $value) {
232
+        $this->mappings['rowDimension']['zeroHeight'] = function($key, $value) {
233 233
             $this->mappings['rowDimension']['__object']($key)->setZeroHeight($value);
234 234
         };
235
-        $this->mappings['sheetState'] = function ($value) {
235
+        $this->mappings['sheetState'] = function($value) {
236 236
             $this->object->setSheetState($value);
237 237
         };
238
-        $this->mappings['showGridlines'] = function ($value) {
238
+        $this->mappings['showGridlines'] = function($value) {
239 239
             $this->object->setShowGridlines($value);
240 240
         };
241
-        $this->mappings['tabColor'] = function ($value) {
241
+        $this->mappings['tabColor'] = function($value) {
242 242
             $this->object->getTabColor()->setRGB($value);
243 243
         };
244
-        $this->mappings['zoomScale'] = function ($value) {
244
+        $this->mappings['zoomScale'] = function($value) {
245 245
             $this->object->getSheetView()->setZoomScale($value);
246 246
         };
247 247
     }
@@ -253,7 +253,7 @@  discard block
 block discarded – undo
253 253
      */
254 254
     public function start($index, array $properties = null)
255 255
     {
256
-        if (is_int($index) && $index <$this->documentWrapper->getObject()->getSheetCount()) {
256
+        if (is_int($index) && $index < $this->documentWrapper->getObject()->getSheetCount()) {
257 257
             $this->object = $this->documentWrapper->getObject()->setActiveSheetIndex($index);
258 258
         } elseif (is_string($index)) {
259 259
             if (!$this->documentWrapper->getObject()->sheetNameExists($index)) {
@@ -261,7 +261,7 @@  discard block
 block discarded – undo
261 261
                 $this->documentWrapper->getObject()->createSheet()->setTitle($index);
262 262
             }
263 263
             $this->object = $this->documentWrapper->getObject()->setActiveSheetIndexByName($index);
264
-        }  else {
264
+        } else {
265 265
             // create new sheet without a name
266 266
             $this->documentWrapper->getObject()->createSheet();
267 267
             $this->object = $this->documentWrapper->getObject()->setActiveSheetIndex(0);
Please login to merge, or discard this patch.