Skip to content

Commit 463bcfc

Browse files
committed
update
1 parent 3fcbcdd commit 463bcfc

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/SQLParser/Parser.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,17 +62,17 @@ public function __toString()
6262
return $this->string;
6363
}
6464

65-
public function offsetExists(mixed $offset): bool
65+
public function offsetExists($offset)
6666
{
6767
return isset($this->metadata[$offset]);
6868
}
6969

70-
public function offsetGet(mixed $offset): mixed
70+
public function offsetGet($offset)
7171
{
7272
return $this->metadata[$offset];
7373
}
7474

75-
public function offsetSet(mixed $offset, mixed $value): void
75+
public function offsetSet($offset, $value)
7676
{
7777
if (null === $offset) {
7878
if (isset($value[0])) {
@@ -96,7 +96,7 @@ public function offsetSet(mixed $offset, mixed $value): void
9696
}
9797
}
9898

99-
public function offsetUnset(mixed $offset): void
99+
public function offsetUnset($offset)
100100
{
101101
unset($this->metadata[$offset]);
102102
}

0 commit comments

Comments
 (0)