Completed
Push — master ( 705d73...141d05 )
by Pavel
02:56
created
src/DataGrid.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -396,7 +396,7 @@  discard block
 block discarded – undo
396 396
 		foreach ($items as $item) {
397 397
 			$rows[] = $row = new Row($this, $item, $this->getPrimaryKey());
398 398
 
399
-			if (!$hasGroupActionOnRows && $row->hasGroupAction()){
399
+			if (!$hasGroupActionOnRows && $row->hasGroupAction()) {
400 400
 				$hasGroupActionOnRows = TRUE;
401 401
 			}
402 402
 			
@@ -413,7 +413,7 @@  discard block
 block discarded – undo
413 413
 			}
414 414
 		}
415 415
 
416
-		if ($hasGroupActionOnRows){
416
+		if ($hasGroupActionOnRows) {
417 417
 			$hasGroupActionOnRows = $this->hasGroupActions();
418 418
 		}
419 419
 
@@ -2762,7 +2762,7 @@  discard block
 block discarded – undo
2762 2762
 
2763 2763
 		if (!($parent instanceof PresenterComponent)) {
2764 2764
 			throw new DataGridHasToBeAttachedToPresenterComponentException(
2765
-				"DataGrid is attached to: '" . get_class($parent) . "', but instance of PresenterComponent is needed."
2765
+				"DataGrid is attached to: '".get_class($parent)."', but instance of PresenterComponent is needed."
2766 2766
 			);
2767 2767
 		}
2768 2768
 
Please login to merge, or discard this patch.