Completed
Branch heritage_class (c7b9cc)
by Maxime
02:29
created
src/Query.php 2 patches
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
 	 *
63 63
 	 * @param  string $format The output format for the request
64 64
 	 *
65
-	 * @return maxh\Nominatim\Query
65
+	 * @return Query
66 66
 	 * @throws maxh\Nominatim\Exceptions\InvalidParameterException if format is not supported
67 67
 	 */
68 68
 	public function format($format)
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
 	 * @param  string $language         Preferred language order for showing search results, overrides the value specified in the "Accept-Language" HTTP header.
90 90
 	 * Either uses standard rfc2616 accept-language string or a simple comma separated list of language codes.
91 91
 	 *
92
-	 * @return maxh\Nominatim\Query
92
+	 * @return Query
93 93
 	 */
94 94
 	public function language($language)
95 95
 	{
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
 	 *
104 104
 	 * @param  boolean $details
105 105
 	 * 
106
-	 * @return maxh\Nominatim\Query
106
+	 * @return Query
107 107
 	 */
108 108
 	public function addressDetails($details = true)
109 109
 	{
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
 	 * 
118 118
 	 * @param  boolean $tags 
119 119
 	 * 
120
-	 * @return maxh\Nominatim\Query
120
+	 * @return Query
121 121
 	 */
122 122
 	public function extraTags($tags = true)
123 123
 	{
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
 	 * 
133 133
 	 * @param  boolean $details 
134 134
 	 * 
135
-	 * @return maxh\Nominatim\Query
135
+	 * @return Query
136 136
 	 */
137 137
 	public function nameDetails($details = true)
138 138
 	{
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
 	 * 
148 148
 	 * @param  string $email Address mail
149 149
 	 * 
150
-	 * @return maxh\Nominatim\Query
150
+	 * @return Query
151 151
 	 */
152 152
 	public function email($email)
153 153
 	{
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
 	 */
45 45
 	public function __construct(array $query = [])
46 46
 	{
47
-		if(!isset($query['format']))
47
+		if (!isset($query['format']))
48 48
 		{
49 49
 			//Default format
50 50
 			$query['format'] = 'json';
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
 	{
70 70
 		$format = strtolower($format);
71 71
 
72
-		if(in_array($format, $this->accepteFormat))
72
+		if (in_array($format, $this->accepteFormat))
73 73
 		{
74 74
 			$this->query['format'] = $format;
75 75
 			$this->setFormat($format);
Please login to merge, or discard this patch.
src/Search.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -19,9 +19,9 @@
 block discarded – undo
19 19
 {
20 20
 
21 21
 	 /**
22
-	 * Output format accepted
23
-	 * @var array
24
-	 */
22
+	  * Output format accepted
23
+	  * @var array
24
+	  */
25 25
 	public $accepteFormat = ['html', 'xml', 'json', 'jsonv2'];
26 26
 
27 27
 
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
 	{
203 203
 		$args = func_get_args();
204 204
 
205
-		if(count($args) > 0)
205
+		if (count($args) > 0)
206 206
 		{
207 207
 			$this->query['exclude_place_ids'] = implode(', ', $args);
208 208
 
@@ -236,9 +236,9 @@  discard block
 block discarded – undo
236 236
 	 */
237 237
 	public function polygon($polygon)
238 238
 	{
239
-		if(in_array($polygon, $this->polygon))
239
+		if (in_array($polygon, $this->polygon))
240 240
 		{
241
-			$this->query['polygon_'.$polygon] = "1";
241
+			$this->query['polygon_' . $polygon] = "1";
242 242
 
243 243
 			return $this;
244 244
 		}
Please login to merge, or discard this patch.
src/Reverse.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
 	 */
56 56
 	public function osmType($type)
57 57
 	{
58
-		if(in_array($type, $this->osmType))
58
+		if (in_array($type, $this->osmType))
59 59
 		{
60 60
 			$this->query['osm_type'] = $type;
61 61
 
@@ -121,9 +121,9 @@  discard block
 block discarded – undo
121 121
 	 */
122 122
 	public function polygon($polygon)
123 123
 	{
124
-		if(in_array($polygon, $this->polygon))
124
+		if (in_array($polygon, $this->polygon))
125 125
 		{
126
-			$this->query['polygon_'.$polygon] = "1";
126
+			$this->query['polygon_' . $polygon] = "1";
127 127
 
128 128
 			return $this;
129 129
 		}
Please login to merge, or discard this patch.