@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | $id = $document->getEntityClass(); |
30 | 30 | $id .= '#'; |
31 | 31 | $entityId = $document->getEntityId(); |
32 | - if(is_scalar($entityId)) { |
|
32 | + if (is_scalar($entityId)) { |
|
33 | 33 | $id .= $entityId; |
34 | 34 | } else { |
35 | 35 | $id .= md5(serialize($entityId)); |
@@ -75,15 +75,15 @@ discard block |
||
75 | 75 | */ |
76 | 76 | public function autocomplete($search, $maxResults = 10) { |
77 | 77 | $words = array(); |
78 | - foreach($this->index as $doc) { |
|
79 | - foreach($doc->getFields() as $content) { |
|
80 | - if(is_string($content)) { |
|
78 | + foreach ($this->index as $doc) { |
|
79 | + foreach ($doc->getFields() as $content) { |
|
80 | + if (is_string($content)) { |
|
81 | 81 | $words = array_merge($words, explode(' ', $content)); |
82 | 82 | } |
83 | 83 | } |
84 | 84 | } |
85 | 85 | |
86 | - return array_filter($words, function ($word) use ($search) { |
|
86 | + return array_filter($words, function($word) use ($search) { |
|
87 | 87 | return stripos($word, $search) === 0; |
88 | 88 | }); |
89 | 89 | } |
@@ -101,10 +101,10 @@ discard block |
||
101 | 101 | $facets = new FacetSetAdapter(); |
102 | 102 | |
103 | 103 | $hits = array(); |
104 | - foreach($this->index as $key => $doc) { |
|
105 | - foreach($doc->getFields() as $content) { |
|
106 | - if(is_string($content) && stripos($content, $term) !== false) { |
|
107 | - if(!isset($hits[$key])) { |
|
104 | + foreach ($this->index as $key => $doc) { |
|
105 | + foreach ($doc->getFields() as $content) { |
|
106 | + if (is_string($content) && stripos($content, $term) !== false) { |
|
107 | + if (!isset($hits[$key])) { |
|
108 | 108 | $hits[$key] = 0; |
109 | 109 | } |
110 | 110 | $hits[$key] = $hits[$key] + 1; |
@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | } |
114 | 114 | arsort($hits); |
115 | 115 | $results = array(); |
116 | - foreach(array_keys($hits) as $docId) { |
|
116 | + foreach (array_keys($hits) as $docId) { |
|
117 | 117 | $doc = $this->index[$docId]; |
118 | 118 | $facets->addFacetValue(FacetSet::FACET_ENTITY_TYPE, $doc->getEntityClass()); |
119 | 119 | $facets->addFacetValue(FacetSet::FACET_AUTHOR, $doc->getFieldValue(Document::FIELD_AUTHOR)); |
@@ -90,10 +90,10 @@ discard block |
||
90 | 90 | * @return \Pec\Bundle\MtuDvpBundle\Entity\TestRiskValue |
91 | 91 | */ |
92 | 92 | public function __get($name) { |
93 | - if(strrpos($name, 'facet_', -strlen($name)) !== false) { |
|
93 | + if (strrpos($name, 'facet_', -strlen($name)) !== false) { |
|
94 | 94 | $facetname = substr($name, 6); |
95 | 95 | |
96 | - if(isset($this->facets[$facetname])) { |
|
96 | + if (isset($this->facets[$facetname])) { |
|
97 | 97 | return $this->facets[$facetname]; |
98 | 98 | } |
99 | 99 | return array(); |
@@ -108,10 +108,10 @@ discard block |
||
108 | 108 | * The value of the property |
109 | 109 | */ |
110 | 110 | public function __set($name, $value) { |
111 | - if(strrpos($name, 'facet_', -strlen($name)) !== false) { |
|
111 | + if (strrpos($name, 'facet_', -strlen($name)) !== false) { |
|
112 | 112 | $facetname = substr($name, 6); |
113 | 113 | |
114 | - if(isset($this->facets[$facetname])) { |
|
114 | + if (isset($this->facets[$facetname])) { |
|
115 | 115 | $this->facets[$facetname] = array(); |
116 | 116 | } |
117 | 117 | $this->facets[$facetname] = $value; |
@@ -125,7 +125,7 @@ discard block |
||
125 | 125 | * @return boolean |
126 | 126 | */ |
127 | 127 | public function __isset($name) { |
128 | - if(strrpos($name, 'facet_', -strlen($name)) !== false) { |
|
128 | + if (strrpos($name, 'facet_', -strlen($name)) !== false) { |
|
129 | 129 | return true; |
130 | 130 | } |
131 | 131 |
@@ -39,9 +39,9 @@ discard block |
||
39 | 39 | public function loadValuesForChoices(array $choices, $value = null) { |
40 | 40 | // is called on form creat with $choices containing the preset of the bound entity |
41 | 41 | $values = array(); |
42 | - foreach($choices as $key => $choice) { |
|
42 | + foreach ($choices as $key => $choice) { |
|
43 | 43 | // we use a DataTransformer, thus only plain values arrive as choices which can be used directly as value |
44 | - if(is_callable($value)) { |
|
44 | + if (is_callable($value)) { |
|
45 | 45 | $values[$key] = (string)call_user_func($value, $choice, $key); |
46 | 46 | } else { |
47 | 47 | $values[$key] = $choice; |
@@ -85,9 +85,9 @@ discard block |
||
85 | 85 | public function loadChoicesForValues(array $values, $value = null) { |
86 | 86 | // is called on form submit after loadValuesForChoices of form create and loadChoiceList of form view create |
87 | 87 | $choices = array(); |
88 | - foreach($values as $key => $val) { |
|
88 | + foreach ($values as $key => $val) { |
|
89 | 89 | // we use a DataTransformer, thus only plain values arrive as choices which can be used directly as value |
90 | - if(is_callable($value)) { |
|
90 | + if (is_callable($value)) { |
|
91 | 91 | $choices[$key] = (string)call_user_func($value, $val, $key); |
92 | 92 | } else { |
93 | 93 | $choices[$key] = $val; |
@@ -116,7 +116,7 @@ |
||
116 | 116 | $view = $form->createView(); |
117 | 117 | $children = $view->children; |
118 | 118 | |
119 | - foreach(array_keys($formData) as $key) { |
|
119 | + foreach (array_keys($formData) as $key) { |
|
120 | 120 | $this->assertArrayHasKey($key, $children); |
121 | 121 | } |
122 | 122 |
@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | |
17 | 17 | class FacetSetAdapterTest extends \PHPUnit_Framework_TestCase { |
18 | 18 | |
19 | - public function testAddFacetValue(){ |
|
19 | + public function testAddFacetValue() { |
|
20 | 20 | $facets = new FacetSetAdapter(array()); |
21 | 21 | $this->assertCount(0, $facets); |
22 | 22 | $facets->addFacetValue(Document::FIELD_AUTHOR, 'Oliver Kotte'); |
@@ -26,13 +26,13 @@ discard block |
||
26 | 26 | $this->assertCount(1, $facets); |
27 | 27 | $this->assertCount(2, $facets->getFacet(Document::FIELD_AUTHOR)); |
28 | 28 | |
29 | - foreach($facets as $facetKey => $facetValues){ |
|
29 | + foreach ($facets as $facetKey => $facetValues) { |
|
30 | 30 | $this->assertEquals(Document::FIELD_AUTHOR, $facetKey); |
31 | 31 | $this->assertCount(2, $facetValues); |
32 | 32 | } |
33 | 33 | } |
34 | 34 | |
35 | - public function testGetFacet(){ |
|
35 | + public function testGetFacet() { |
|
36 | 36 | $facets = new FacetSetAdapter(array()); |
37 | 37 | $this->assertCount(0, $facets); |
38 | 38 | $this->assertNull($facets->getFacet('NotExisting')); |
@@ -31,12 +31,12 @@ discard block |
||
31 | 31 | $builder->resetModelTransformers(); |
32 | 32 | $builder->resetViewTransformers(); |
33 | 33 | |
34 | - if($options['multiple']) { |
|
35 | - $builder->addEventListener(FormEvents::PRE_SUBMIT, function (FormEvent $event) { |
|
34 | + if ($options['multiple']) { |
|
35 | + $builder->addEventListener(FormEvents::PRE_SUBMIT, function(FormEvent $event) { |
|
36 | 36 | $event->stopPropagation(); |
37 | 37 | }, 1); |
38 | 38 | } |
39 | - $builder->addEventListener(FormEvents::SUBMIT, function (FormEvent $event) { |
|
39 | + $builder->addEventListener(FormEvents::SUBMIT, function(FormEvent $event) { |
|
40 | 40 | $data = $event->getForm()->getExtraData(); |
41 | 41 | $event->setData(array_unique(array_merge($data, $event->getData()))); |
42 | 42 | }); |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | public function configureOptions(OptionsResolver $resolver) { |
62 | 62 | $resolver->setDefault('translation_domain', 'StingerSoftEntitySearchBundle'); |
63 | 63 | $resolver->setDefault('by_reference', true); |
64 | - if(Kernel::VERSION_ID < 30000) { |
|
64 | + if (Kernel::VERSION_ID < 30000) { |
|
65 | 65 | $resolver->setDefault('choices_as_values', true); |
66 | 66 | } |
67 | 67 | } |
@@ -73,12 +73,12 @@ discard block |
||
73 | 73 | * @param LifecycleEventArgs $args |
74 | 74 | */ |
75 | 75 | public function postPersist(LifecycleEventArgs $args) { |
76 | - if(!$this->enableIndexing) return; |
|
76 | + if (!$this->enableIndexing) return; |
|
77 | 77 | $this->updateEntity($args->getObject(), $args->getObjectManager()); |
78 | 78 | } |
79 | 79 | |
80 | 80 | public function postFlush(PostFlushEventArgs $eventArgs) { |
81 | - if($this->needsFlush) { |
|
81 | + if ($this->needsFlush) { |
|
82 | 82 | $this->needsFlush = false; |
83 | 83 | $eventArgs->getEntityManager()->flush(); |
84 | 84 | } |
@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | * @param LifecycleEventArgs $args |
91 | 91 | */ |
92 | 92 | public function preRemove(LifecycleEventArgs $args) { |
93 | - if(!$this->enableIndexing) return; |
|
93 | + if (!$this->enableIndexing) return; |
|
94 | 94 | $this->removeEntity($args->getObject(), $args->getObjectManager()); |
95 | 95 | } |
96 | 96 | |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | * @param LifecycleEventArgs $args |
101 | 101 | */ |
102 | 102 | public function postUpdate(LifecycleEventArgs $args) { |
103 | - if(!$this->enableIndexing) return; |
|
103 | + if (!$this->enableIndexing) return; |
|
104 | 104 | $this->updateEntity($args->getObject(), $args->getObjectManager()); |
105 | 105 | } |
106 | 106 | |
@@ -127,7 +127,7 @@ discard block |
||
127 | 127 | */ |
128 | 128 | protected function updateEntity($entity, ObjectManager $manager) { |
129 | 129 | $document = $this->getEntityToDocumentMapper()->createDocument($manager, $entity); |
130 | - if($document !== false) { |
|
130 | + if ($document !== false) { |
|
131 | 131 | $this->getSearchService($manager)->saveDocument($document); |
132 | 132 | } |
133 | 133 | } |
@@ -138,7 +138,7 @@ discard block |
||
138 | 138 | */ |
139 | 139 | protected function removeEntity($entity, ObjectManager $manager) { |
140 | 140 | $document = $this->getEntityToDocumentMapper()->createDocument($manager, $entity); |
141 | - if($document !== false) { |
|
141 | + if ($document !== false) { |
|
142 | 142 | $this->getSearchService($manager)->removeDocument($document); |
143 | 143 | } |
144 | 144 | } |
@@ -51,21 +51,21 @@ discard block |
||
51 | 51 | $maxChoiceGroupCount = $options['max_choice_group_count']; |
52 | 52 | $data = array(); |
53 | 53 | |
54 | - if($usedFacets && !$result) { |
|
55 | - foreach($usedFacets as $facetType) { |
|
54 | + if ($usedFacets && !$result) { |
|
55 | + foreach ($usedFacets as $facetType) { |
|
56 | 56 | $preferredChoices = isset($preferredFilterChoices[$facetType]) ? $preferredFilterChoices[$facetType] : array(); |
57 | 57 | |
58 | - $builder->add('facet_' . $facetType, FacetType::class, array( |
|
59 | - 'label' => 'stinger_soft_entity_search.forms.query.' . $facetType . '.label', |
|
58 | + $builder->add('facet_'.$facetType, FacetType::class, array( |
|
59 | + 'label' => 'stinger_soft_entity_search.forms.query.'.$facetType.'.label', |
|
60 | 60 | 'multiple' => true, |
61 | 61 | 'expanded' => true, |
62 | - 'preferred_choices' => function ($val) use ($preferredChoices, $data) { |
|
63 | - return count($preferredChoices) == 0 || in_array($val, $preferredChoices) || in_array($val, $data['facet_' . $facetType]); |
|
62 | + 'preferred_choices' => function($val) use ($preferredChoices, $data) { |
|
63 | + return count($preferredChoices) == 0 || in_array($val, $preferredChoices) || in_array($val, $data['facet_'.$facetType]); |
|
64 | 64 | }, |
65 | 65 | )); |
66 | 66 | } |
67 | 67 | } |
68 | - if($result) { |
|
68 | + if ($result) { |
|
69 | 69 | $this->createFacets($builder, $result->getFacets()); |
70 | 70 | } |
71 | 71 | |
@@ -101,16 +101,16 @@ discard block |
||
101 | 101 | $preferredFilterChoices = $options['preferred_filter_choices']; |
102 | 102 | $maxChoiceGroupCount = $options['max_choice_group_count']; |
103 | 103 | $data = array(); |
104 | - foreach($facets->getFacets() as $facetType => $facetValues) { |
|
104 | + foreach ($facets->getFacets() as $facetType => $facetValues) { |
|
105 | 105 | $preferredChoices = isset($preferredFilterChoices[$facetType]) ? $preferredFilterChoices[$facetType] : array(); |
106 | 106 | |
107 | - $builder->add('facet_' . $facetType, FacetType::class, array( |
|
108 | - 'label' => 'stinger_soft_entity_search.forms.query.' . $facetType . '.label', |
|
107 | + $builder->add('facet_'.$facetType, FacetType::class, array( |
|
108 | + 'label' => 'stinger_soft_entity_search.forms.query.'.$facetType.'.label', |
|
109 | 109 | 'multiple' => true, |
110 | 110 | 'expanded' => true, |
111 | - 'choices' => $this->generateFacetChoices($facetType, $facetValues) , |
|
112 | - 'preferred_choices' => function ($val) use ($preferredChoices, $data) { |
|
113 | - return count($preferredChoices) == 0 || in_array($val, $preferredChoices) || in_array($val, $data['facet_' . $facetType]); |
|
111 | + 'choices' => $this->generateFacetChoices($facetType, $facetValues), |
|
112 | + 'preferred_choices' => function($val) use ($preferredChoices, $data) { |
|
113 | + return count($preferredChoices) == 0 || in_array($val, $preferredChoices) || in_array($val, $data['facet_'.$facetType]); |
|
114 | 114 | }, |
115 | 115 | )); |
116 | 116 | } |
@@ -124,10 +124,10 @@ discard block |
||
124 | 124 | protected function generateFacetChoices($facetType, array $facets) { |
125 | 125 | $choices = array(); |
126 | 126 | |
127 | - foreach($facets as $facet => $count) { |
|
128 | - if($count == 0) |
|
127 | + foreach ($facets as $facet => $count) { |
|
128 | + if ($count == 0) |
|
129 | 129 | break; |
130 | - $choices[$facet . ' (' . $count . ')'] = $facet; |
|
130 | + $choices[$facet.' ('.$count.')'] = $facet; |
|
131 | 131 | } |
132 | 132 | return $choices; |
133 | 133 | } |