Completed
Pull Request — master (#1)
by
unknown
12:30
created
Tests/Form/QueryTypeTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -116,7 +116,7 @@
 block discarded – undo
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
 		
Please login to merge, or discard this patch.
Tests/Services/DoctrineListenerTest.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -25,9 +25,9 @@  discard block
 block discarded – undo
25 25
 
26 26
 	/**
27 27
 	 *
28
-	 * @param number $save
28
+	 * @param integer $save
29 29
 	 *        	Number of expected saves
30
-	 * @param number $delete
30
+	 * @param integer $delete
31 31
 	 *        	Number of expected deletions
32 32
 	 */
33 33
 	protected function registerDoctrineListener($save = 0, $delete = 0) {
@@ -50,9 +50,9 @@  discard block
 block discarded – undo
50 50
 
51 51
 	/**
52 52
 	 *
53
-	 * @param number $save
53
+	 * @param integer $save
54 54
 	 *        	Number of expected saves
55
-	 * @param number $delete
55
+	 * @param integer $delete
56 56
 	 *        	Number of expected deletions
57 57
 	 */
58 58
 	protected function registerSearchService($save = 0, $delete = 0) {
Please login to merge, or discard this patch.
Tests/AbstractORMTestCase.php 2 patches
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
 		);
45 45
 		$config = null === $config ? $this->getMockAnnotatedConfig() : $config;
46 46
 		$em = EntityManager::create($conn, $config, $evm ?: $this->getEventManager());
47
-		$schema = array_map(function ($class) use ($em) {
47
+		$schema = array_map(function($class) use ($em) {
48 48
 			return $em->getClassMetadata($class);
49 49
 		}, (array)$this->getUsedEntityFixtures());
50 50
 		$schemaTool = new SchemaTool($em);
@@ -69,13 +69,13 @@  discard block
 block discarded – undo
69 69
 		$refl = new \ReflectionClass($configurationClass);
70 70
 		$methods = $refl->getMethods();
71 71
 		$mockMethods = array();
72
-		foreach($methods as $method) {
73
-			if($method->name !== 'addFilter' && $method->name !== 'getFilterClassName') {
72
+		foreach ($methods as $method) {
73
+			if ($method->name !== 'addFilter' && $method->name !== 'getFilterClassName') {
74 74
 				$mockMethods[] = $method->name;
75 75
 			}
76 76
 		}
77 77
 		$config = $this->getMockBuilder($configurationClass)->setMethods($mockMethods)->getMock();
78
-		$config->expects($this->once())->method('getProxyDir')->will($this->returnValue(__DIR__ . '/../../temp'));
78
+		$config->expects($this->once())->method('getProxyDir')->will($this->returnValue(__DIR__.'/../../temp'));
79 79
 		$config->expects($this->once())->method('getProxyNamespace')->will($this->returnValue('Proxy'));
80 80
 		$config->expects($this->any())->method('getDefaultQueryHints')->will($this->returnValue(array()));
81 81
 		$config->expects($this->once())->method('getAutoGenerateProxyClasses')->will($this->returnValue(true));
Please login to merge, or discard this patch.
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
 	/**
62 62
 	 * Get annotation mapping configuration
63 63
 	 *
64
-	 * @return \Doctrine\ORM\Configuration
64
+	 * @return \PHPUnit\Framework\MockObject\MockObject
65 65
 	 */
66 66
 	protected function getMockAnnotatedConfig() {
67 67
 		// We need to mock every method except the ones which
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
 	/**
94 94
 	 * Creates default mapping driver
95 95
 	 *
96
-	 * @return \Doctrine\ORM\Mapping\Driver\Driver
96
+	 * @return AnnotationDriver
97 97
 	 */
98 98
 	protected function getMetadataDriverImplementation() {
99 99
 		return new AnnotationDriver($_ENV['annotation_reader'], $this->getPaths());
Please login to merge, or discard this patch.
Tests/application.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 // application.php
3
-require __DIR__ . '/../vendor/autoload.php';
3
+require __DIR__.'/../vendor/autoload.php';
4 4
 
5 5
 use StingerSoft\EntitySearchBundle\Command\ClearIndexCommand;
6 6
 use StingerSoft\EntitySearchBundle\Command\SyncCommand;
Please login to merge, or discard this patch.
Model/Document.php 1 patch
Doc Comments   +6 added lines, -1 removed lines patch added patch discarded remove patch
@@ -94,6 +94,7 @@  discard block
 block discarded – undo
94 94
 	 *            The name of the field
95 95
 	 * @param mixed $value
96 96
 	 *            The value of this field
97
+	 * @return void
97 98
 	 */
98 99
 	public function addField(string $fieldName, $value): void;
99 100
 
@@ -122,6 +123,7 @@  discard block
 block discarded – undo
122 123
 	 *            The name of the field
123 124
 	 * @param mixed $value
124 125
 	 *            The additional value of this field
126
+	 * @return void
125 127
 	 */
126 128
 	public function addMultiValueField(string $fieldName, $value): void;
127 129
 
@@ -133,6 +135,7 @@  discard block
 block discarded – undo
133 135
 	 *
134 136
 	 * @param string $clazz
135 137
 	 *            The classname
138
+	 * @return void
136 139
 	 */
137 140
 	public function setEntityClass(string $clazz): void;
138 141
 
@@ -152,6 +155,7 @@  discard block
 block discarded – undo
152 155
 	 *
153 156
 	 * @param mixed $id
154 157
 	 *            The ID of the corresponding entity
158
+	 * @return void
155 159
 	 */
156 160
 	public function setEntityId($id): void;
157 161
 
@@ -168,6 +172,7 @@  discard block
 block discarded – undo
168 172
 	 * hiding some programatically needed complexity from the user
169 173
 	 *
170 174
 	 * @param string $type
175
+	 * @return void
171 176
 	 */
172 177
 	public function setEntityType(string $type): void;
173 178
 
@@ -178,7 +183,6 @@  discard block
 block discarded – undo
178 183
 	 *
179 184
 	 * If no entity type is set, the class will be used instead
180 185
 	 *
181
-	 * @param string $type
182 186
 	 */
183 187
 	public function getEntityType(): string;
184 188
 
@@ -188,6 +192,7 @@  discard block
 block discarded – undo
188 192
 	 * <strong>note:</strong> This may not supported by the underlying implementation
189 193
 	 *
190 194
 	 * @param string $path
195
+	 * @return void
191 196
 	 */
192 197
 	public function setFile(string $path): void;
193 198
 
Please login to merge, or discard this patch.
Model/Query.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@
 block discarded – undo
106 106
 	 *
107 107
 	 * @param string $name
108 108
 	 *            Name of the property to set
109
-	 * @param mixed $value
109
+	 * @param string[] $value
110 110
 	 *            The value of the property
111 111
 	 */
112 112
 	public function __set($name, $value): void {
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -92,10 +92,10 @@  discard block
 block discarded – undo
92 92
 	 * @return array
93 93
 	 */
94 94
 	public function __get($name) {
95
-		if(strrpos($name, 'facet_', -strlen($name)) !== false) {
95
+		if (strrpos($name, 'facet_', -strlen($name)) !== false) {
96 96
 			$facetname = substr($name, 6);
97 97
 
98
-			if(isset($this->facets[$facetname])) {
98
+			if (isset($this->facets[$facetname])) {
99 99
 				return $this->facets[$facetname];
100 100
 			}
101 101
 			return array();
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
 	 *            The value of the property
111 111
 	 */
112 112
 	public function __set($name, $value): void {
113
-		if(strrpos($name, 'facet_', -strlen($name)) !== false) {
113
+		if (strrpos($name, 'facet_', -strlen($name)) !== false) {
114 114
 			$facetname = substr($name, 6);
115 115
 			$this->facets[$facetname] = $value;
116 116
 		}
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
 	 * @return boolean
124 124
 	 */
125 125
 	public function __isset($name): bool {
126
-		if(strrpos($name, 'facet_', -strlen($name)) !== false) {
126
+		if (strrpos($name, 'facet_', -strlen($name)) !== false) {
127 127
 			return true;
128 128
 		}
129 129
 
Please login to merge, or discard this patch.
Model/Result/FacetSet.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -40,5 +40,8 @@
 block discarded – undo
40 40
 	 */
41 41
 	public function getFacets(): array;
42 42
 
43
+	/**
44
+	 * @return void
45
+	 */
43 46
 	public function addFacetValue(string $key, string $label, $value = null, int $increaseCounterBy = 1) : void;
44 47
 }
45 48
\ No newline at end of file
Please login to merge, or discard this patch.
Tests/Controller/SearchControllerTest.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -77,6 +77,9 @@
 block discarded – undo
77 77
 
78 78
 	}
79 79
 
80
+	/**
81
+	 * @param \StingerSoft\EntitySearchBundle\Services\DummySearchService $searchService
82
+	 */
80 83
 	protected function getSearchController(?SearchService $searchService = null): SearchController {
81 84
 		$searchService = $searchService ?? $this->getDummySearchService();
82 85
 
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
 			return \in_array($id, ['twig', 'form.factory'], true);
98 98
 		});
99 99
 		$container->method('get')->willReturnCallback(function($id) use ($that) {
100
-			if($id === 'form.factory') {
100
+			if ($id === 'form.factory') {
101 101
 				$resolvedFormTypeFactory = new ResolvedFormTypeFactory();
102 102
 				$formTypeFactory = Forms::createFormFactoryBuilder()
103 103
 					->addType(new FacetType())
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
 					->getFormFactory();
108 108
 				return $formTypeFactory;
109 109
 			}
110
-			if($id === 'twig') {
110
+			if ($id === 'twig') {
111 111
 				return $that;
112 112
 			}
113 113
 		});
Please login to merge, or discard this patch.
Tests/Model/Result/FacetSetAdapterTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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'));
Please login to merge, or discard this patch.