Passed
Push — master ( b1243d...a1f3e0 )
by Simon
02:11
created
DependencyInjection/Configuration.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -30,18 +30,18 @@
 block discarded – undo
30 30
 
31 31
         $rootNode
32 32
             ->children()
33
-              ->scalarNode('excel_factory_namespace')
33
+                ->scalarNode('excel_factory_namespace')
34 34
                 ->defaultValue('\PHPExcel_IOFactory')
35
-              ->end()
36
-              ->scalarNode('layout_style')
35
+                ->end()
36
+                ->scalarNode('layout_style')
37 37
                 ->defaultValue('horizontal')
38
-              ->end()
39
-              ->scalarNode('output_format')
38
+                ->end()
39
+                ->scalarNode('output_format')
40 40
                 ->defaultValue('Excel2007')
41
-              ->end()
42
-              ->scalarNode('default_report_path')
41
+                ->end()
42
+                ->scalarNode('default_report_path')
43 43
                 ->isRequired()
44
-              ->end()
44
+                ->end()
45 45
             ->end()
46 46
         ;
47 47
 
Please login to merge, or discard this patch.
Styles/Width.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -28,13 +28,13 @@
 block discarded – undo
28 28
         switch ($options['type']) {
29 29
         case 'auto':
30 30
           $context->sheet()
31
-          ->getColumnDimension($coordString)
32
-          ->setAutoSize(true);
33
-          break;
31
+            ->getColumnDimension($coordString)
32
+            ->setAutoSize(true);
33
+            break;
34 34
 
35 35
         default:
36 36
           throw new \Exception('Unrecognised style width option: '.$options['type']);
37
-          break;
38
-      }
37
+            break;
38
+        }
39 39
     }
40 40
 }
Please login to merge, or discard this patch.
Tests/Extension/ConfigurationTest.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
     use ConfigurationTestCaseTrait;
28 28
     
29 29
     protected function getContainerExtension() {
30
-       return new SymballReportExtension();
30
+        return new SymballReportExtension();
31 31
     }
32 32
     
33 33
     protected function getConfiguration()
Please login to merge, or discard this patch.
Tests/Extension/ServiceTest.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -21,9 +21,9 @@
 block discarded – undo
21 21
 {
22 22
     
23 23
     protected function getContainerExtensions() {
24
-       return array(
25
-         new SymballReportExtension()
26
-       );
24
+        return array(
25
+            new SymballReportExtension()
26
+        );
27 27
     }
28 28
     
29 29
     protected function getMinimalConfiguration()
Please login to merge, or discard this patch.
Service/Nav.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -303,7 +303,7 @@
 block discarded – undo
303 303
         }
304 304
 
305 305
         if(isset($propertyName)) {
306
-          return $this->$propertyName;
306
+            return $this->$propertyName;
307 307
         }
308 308
     }
309 309
 
Please login to merge, or discard this patch.
Service/Meta.php 1 patch
Indentation   +56 added lines, -56 removed lines patch added patch discarded remove patch
@@ -122,15 +122,15 @@  discard block
 block discarded – undo
122 122
         return $this;
123 123
     }
124 124
 
125
-  /**
126
-   * Increment the value for a key that makes up part of the currently focused
127
-   * data object.
128
-   *
129
-   * @param string $key   The index to use
130
-   * @param int    $value The value to increment by
131
-   * @return $this
132
-   * @throws \Exception if there is no data point, column or invalid type
133
-   */
125
+    /**
126
+     * Increment the value for a key that makes up part of the currently focused
127
+     * data object.
128
+     *
129
+     * @param string $key   The index to use
130
+     * @param int    $value The value to increment by
131
+     * @return $this
132
+     * @throws \Exception if there is no data point, column or invalid type
133
+     */
134 134
     public function increment($key, $value = 1)
135 135
     {
136 136
         if (!$this->currentDataPoint) {
@@ -154,15 +154,15 @@  discard block
 block discarded – undo
154 154
         return $this;
155 155
     }
156 156
 
157
-  /**
158
-   * Directly set the value for a key that makes up part of the currently focused
159
-   * data object.
160
-   *
161
-   * @param string         $key   The index to use
162
-   * @param string|integer $value The value to set
163
-   * @return $this
164
-   * @throws \Exception
165
-   */
157
+    /**
158
+     * Directly set the value for a key that makes up part of the currently focused
159
+     * data object.
160
+     *
161
+     * @param string         $key   The index to use
162
+     * @param string|integer $value The value to set
163
+     * @return $this
164
+     * @throws \Exception
165
+     */
166 166
     public function set($key, $value)
167 167
     {
168 168
         if (!$this->currentDataPoint) {
@@ -177,13 +177,13 @@  discard block
 block discarded – undo
177 177
         return $this;
178 178
     }
179 179
 
180
-  /**
181
-   * Set a focus for the current data object for which data can be manipulated.
182
-   * If the key doesn't exist, it will be created using default column values.
183
-   *
184
-   * @param string $key The reference key to be used
185
-   * @return $this
186
-   */
180
+    /**
181
+     * Set a focus for the current data object for which data can be manipulated.
182
+     * If the key doesn't exist, it will be created using default column values.
183
+     *
184
+     * @param string $key The reference key to be used
185
+     * @return $this
186
+     */
187 187
     public function setPoint($key)
188 188
     {
189 189
         if (!isset($this->currentDataSet[$key])) {
@@ -194,14 +194,14 @@  discard block
 block discarded – undo
194 194
         return $this;
195 195
     }
196 196
 
197
-  /**
198
-   * Add a data point which will be shown on the report. This function should be
199
-   * used prior to any kind of data manipulation as it will not setup a data
200
-   * structure for manipulation.
201
-   *
202
-   * @param string $key The index to use
203
-   * @return $this
204
-   */
197
+    /**
198
+     * Add a data point which will be shown on the report. This function should be
199
+     * used prior to any kind of data manipulation as it will not setup a data
200
+     * structure for manipulation.
201
+     *
202
+     * @param string $key The index to use
203
+     * @return $this
204
+     */
205 205
     public function addPoint($key)
206 206
     {
207 207
         if (!in_array($key, $this->dataPoints)) {
@@ -212,20 +212,20 @@  discard block
 block discarded – undo
212 212
         return $this;
213 213
     }
214 214
 
215
-  /**
216
-   * Define a type of data that will be presented on the report or metadata that
217
-   * will be used for calculations. In the latter case, within the options array
218
-   * set "visible" to false.
219
-   * At a minimum, the key needs to be set. In this case, the type will be string
220
-   * and the key converted in to a title
221
-   * .
222
-   *
223
-   * @param string $key          A reference key for the piece of data
224
-   * @param string|integer $defaultValue The default also defines type of column
225
-   * @param array  $options      Additional parameters for the column to use
226
-   *
227
-   * @return $this
228
-   */
215
+    /**
216
+     * Define a type of data that will be presented on the report or metadata that
217
+     * will be used for calculations. In the latter case, within the options array
218
+     * set "visible" to false.
219
+     * At a minimum, the key needs to be set. In this case, the type will be string
220
+     * and the key converted in to a title
221
+     * .
222
+     *
223
+     * @param string $key          A reference key for the piece of data
224
+     * @param string|integer $defaultValue The default also defines type of column
225
+     * @param array  $options      Additional parameters for the column to use
226
+     *
227
+     * @return $this
228
+     */
229 229
     public function column(
230 230
         $key,
231 231
         $defaultValue = '',
@@ -258,15 +258,15 @@  discard block
 block discarded – undo
258 258
     }
259 259
 
260 260
     /**
261
-   * Manually set the data which will be used for the current set. when
262
-   * using this function, it will expect an associative array of arrays where
263
-   * each entry has a further array of values which have a key matching that of
264
-   * the meta data.
265
-   * TODO - This is quite messy, rewrite more efficiently.
266
-   *
267
-   * @param array $inputData A set of data which conforms to the column specification
268
-   * @return $this
269
-   */
261
+     * Manually set the data which will be used for the current set. when
262
+     * using this function, it will expect an associative array of arrays where
263
+     * each entry has a further array of values which have a key matching that of
264
+     * the meta data.
265
+     * TODO - This is quite messy, rewrite more efficiently.
266
+     *
267
+     * @param array $inputData A set of data which conforms to the column specification
268
+     * @return $this
269
+     */
270 270
     public function setData($inputData)
271 271
     {
272 272
         // Combine raw data with the meta data
Please login to merge, or discard this patch.