Completed
Push — master ( 36b55b...fa7cf7 )
by Florian
03:13
created
Services/AbstractSearchService.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,9 @@
 block discarded – undo
32 32
 	 * @see \StingerSoft\EntitySearchBundle\Services\SearchService::setObjectManager()
33 33
 	 */
34 34
 	public function setObjectManager(ObjectManager $om) {
35
-		if($this->objectManager) return;
35
+		if($this->objectManager) {
36
+			return;
37
+		}
36 38
 		$this->objectManager = $om;
37 39
 	}
38 40
 
Please login to merge, or discard this patch.
Services/Mapping/EntityToDocumentMapper.php 1 patch
Braces   +6 added lines, -4 removed lines patch added patch discarded remove patch
@@ -89,12 +89,14 @@
 block discarded – undo
89 89
 	 * @return boolean|Document Returns false if no document could be created
90 90
 	 */
91 91
 	public function createDocument(ObjectManager $manager, $object) {
92
-		if(!$this->isIndexable($object))
93
-			return false;
92
+		if(!$this->isIndexable($object)) {
93
+					return false;
94
+		}
94 95
 		$document = $this->getSearchService($manager)->createEmptyDocumentFromEntity($object);
95 96
 		$index = $this->fillDocument($document, $object);
96
-		if($index == false)
97
-			return false;
97
+		if($index == false) {
98
+					return false;
99
+		}
98 100
 		
99 101
 		return $document;
100 102
 	}
Please login to merge, or discard this patch.
Form/QueryType.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -66,8 +66,9 @@
 block discarded – undo
66 66
 		$choices = array();
67 67
 		
68 68
 		foreach($facets as $facet => $count) {
69
-			if($count == 0)
70
-				break;
69
+			if($count == 0) {
70
+							break;
71
+			}
71 72
 			$choices[$facet] = $facet . ' (' . $count . ')';
72 73
 		}
73 74
 		return $choices;
Please login to merge, or discard this patch.
Services/DoctrineListener.php 1 patch
Braces   +9 added lines, -3 removed lines patch added patch discarded remove patch
@@ -73,7 +73,9 @@  discard block
 block discarded – undo
73 73
 	 * @param LifecycleEventArgs $args        	
74 74
 	 */
75 75
 	public function postPersist(LifecycleEventArgs $args) {
76
-		if(!$this->enableIndexing) return;
76
+		if(!$this->enableIndexing) {
77
+			return;
78
+		}
77 79
 		$this->updateEntity($args->getObject(), $args->getObjectManager());
78 80
 	}
79 81
 
@@ -90,7 +92,9 @@  discard block
 block discarded – undo
90 92
 	 * @param LifecycleEventArgs $args        	
91 93
 	 */
92 94
 	public function preRemove(LifecycleEventArgs $args) {
93
-		if(!$this->enableIndexing) return;
95
+		if(!$this->enableIndexing) {
96
+			return;
97
+		}
94 98
 		$this->removeEntity($args->getObject(), $args->getObjectManager());
95 99
 	}
96 100
 
@@ -100,7 +104,9 @@  discard block
 block discarded – undo
100 104
 	 * @param LifecycleEventArgs $args        	
101 105
 	 */
102 106
 	public function postUpdate(LifecycleEventArgs $args) {
103
-		if(!$this->enableIndexing) return;
107
+		if(!$this->enableIndexing) {
108
+			return;
109
+		}
104 110
 		$this->updateEntity($args->getObject(), $args->getObjectManager());
105 111
 	}
106 112
 
Please login to merge, or discard this patch.