package and depencies

This commit is contained in:
RafficMohammed
2023-01-08 02:57:24 +05:30
parent d5332eb421
commit 1d54b8bc7f
4309 changed files with 193331 additions and 172289 deletions

View File

@@ -18,10 +18,10 @@
}
],
"require": {
"php": "^7.2 || ^8.0",
"illuminate/support": "^8.0",
"illuminate/console": "^8.0",
"illuminate/cache": "^8.0"
"php": "^8.0",
"illuminate/cache": "^8.0|^9.0",
"illuminate/console": "^8.0|^9.0",
"illuminate/support": "^8.0|^9.0"
},
"suggest": {
"geoip2/geoip2": "Required to use the MaxMind database or web service with GeoIP (~2.1).",

View File

@@ -154,7 +154,7 @@ class Location implements ArrayAccess
*
* @return bool
*/
public function offsetExists($offset)
public function offsetExists(mixed $offset): bool
{
return isset($this->$offset);
}
@@ -166,7 +166,7 @@ class Location implements ArrayAccess
*
* @return mixed
*/
public function offsetGet($offset)
public function offsetGet(mixed $offset): mixed
{
return $this->$offset;
}
@@ -179,7 +179,7 @@ class Location implements ArrayAccess
*
* @return void
*/
public function offsetSet($offset, $value)
public function offsetSet(mixed $offset, mixed $value): void
{
$this->$offset = $value;
}
@@ -191,7 +191,7 @@ class Location implements ArrayAccess
*
* @return void
*/
public function offsetUnset($offset)
public function offsetUnset(mixed $offset): void
{
unset($this->$offset);
}