Completed
Push — master ( b954a7...a103fe )
by Gordon
06:15
created
code/GridRowsExtension.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
 
33 33
         if ($itemsInGrid == null) {
34 34
             $message = 'Method not found.  A grid cannot be formed from the '
35
-                     . 'method ' . $itemsInGridMethod;
35
+                      . 'method ' . $itemsInGridMethod;
36 36
             throw new InvalidArgumentException($message);
37 37
         }
38 38
 
Please login to merge, or discard this patch.
tests/GridRowsExtensionTest.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
     public function testSplitDataListMethodDoesNotExist()
22 22
     {
23 23
         $message = 'Method not found.  A grid cannot be formed from the method'
24
-                 . ' GridRowItemsTHISMETHODDOESNOTEXIST';
24
+                  . ' GridRowItemsTHISMETHODDOESNOTEXIST';
25 25
         $this->setExpectedException('InvalidArgumentException', $message);
26 26
 
27 27
         $page = $this->objFromFixture('GridRowItemPageTO', 'page001');
Please login to merge, or discard this patch.