11<?php
22
3+ declare (strict_types=1 );
4+
35namespace InteractionDesignFoundation \GeoIP ;
46
57use ArrayAccess ;
@@ -46,7 +48,7 @@ public function __construct(array $attributes = [])
4648 /**
4749 * Determine if the location is for the same IP address.
4850 *
49- * @param string $ip
51+ * @param string $ip
5052 *
5153 * @return bool
5254 */
@@ -58,8 +60,8 @@ public function same($ip)
5860 /**
5961 * Set a given attribute on the location.
6062 *
61- * @param string $key
62- * @param mixed $value
63+ * @param string $key
64+ * @param mixed $value
6365 *
6466 * @return $this
6567 */
@@ -73,7 +75,7 @@ public function setAttribute($key, $value)
7375 /**
7476 * Get an attribute from the $attributes array.
7577 *
76- * @param string $key
78+ * @param string $key
7779 *
7880 * @return mixed
7981 */
@@ -125,7 +127,7 @@ public function toArray()
125127 /**
126128 * Get the location's attribute
127129 *
128- * @param string $key
130+ * @param string $key
129131 *
130132 * @return mixed
131133 */
@@ -137,8 +139,8 @@ public function __get($key)
137139 /**
138140 * Set the location's attribute
139141 *
140- * @param string $key
141- * @param mixed $value
142+ * @param string $key
143+ * @param mixed $value
142144 */
143145 public function __set ($ key , $ value )
144146 {
@@ -148,7 +150,7 @@ public function __set($key, $value)
148150 /**
149151 * Determine if the given attribute exists.
150152 *
151- * @param mixed $offset
153+ * @param mixed $offset
152154 *
153155 * @return bool
154156 */
@@ -160,7 +162,7 @@ public function offsetExists(mixed $offset): bool
160162 /**
161163 * Get the value for a given offset.
162164 *
163- * @param mixed $offset
165+ * @param mixed $offset
164166 *
165167 * @return mixed
166168 */
@@ -172,8 +174,8 @@ public function offsetGet(mixed $offset): mixed
172174 /**
173175 * Set the value for a given offset.
174176 *
175- * @param mixed $offset
176- * @param mixed $value
177+ * @param mixed $offset
178+ * @param mixed $value
177179 *
178180 * @return void
179181 */
@@ -185,7 +187,7 @@ public function offsetSet(mixed $offset, mixed $value): void
185187 /**
186188 * Unset the value for a given offset.
187189 *
188- * @param mixed $offset
190+ * @param mixed $offset
189191 *
190192 * @return void
191193 */
@@ -209,7 +211,7 @@ public function __isset($key)
209211 /**
210212 * Unset an attribute on the location.
211213 *
212- * @param string $key
214+ * @param string $key
213215 *
214216 * @return void
215217 */
0 commit comments