Passed
Push — master ( f9a438...325578 )
by Anthony
02:16
created
EventListener/GuidAwareListener.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
 	public function prePersist($entity)
21 21
 	{
22 22
 		if ($entity->getGuid() === null) {
23
-			$entity->setGuid((string)Uuid::uuid4());
23
+			$entity->setGuid((string) Uuid::uuid4());
24 24
 		}
25 25
 	}
26 26
 }
Please login to merge, or discard this patch.
Service/Globals.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,6 +13,6 @@
 block discarded – undo
13 13
 		$path = explode("/", __DIR__);
14 14
 		array_pop($path);
15 15
 		
16
-		return implode("/", $path)."/../../" . $package;
16
+		return implode("/", $path) . "/../../" . $package;
17 17
 	}
18 18
 }
19 19
\ No newline at end of file
Please login to merge, or discard this patch.
Service/AccessRights.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@
 block discarded – undo
78 78
 			$rights[] = json_decode(file_get_contents($this->globals->getBaseBundlePath($module->getPackageName()) . "/Resources/json/ribsadmin_rights.json"));
79 79
 		}
80 80
 		
81
-		return (object)$rights;
81
+		return (object) $rights;
82 82
 	}
83 83
 	
84 84
 	/**
Please login to merge, or discard this patch.
Controller/NavigationBuilderController.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,8 +39,7 @@
 block discarded – undo
39 39
 		]);
40 40
 		
41 41
 		foreach ($modules as $module) {
42
-			$navigation = json_decode(file_get_contents($this->get("ribs_admin.globals")->getBaseBundlePath
43
-				($module->getPackageName()) . "/Resources/json/navigation.json"), true);
42
+			$navigation = json_decode(file_get_contents($this->get("ribs_admin.globals")->getBaseBundlePath($module->getPackageName()) . "/Resources/json/navigation.json"), true);
44 43
 			
45 44
 			foreach ($navigation["items"] as $item) {
46 45
 				if ($this->get("ribs_admin.acess_rights")->testRight($item["right"])) {
Please login to merge, or discard this patch.