Skip to content

Commit

Permalink
Revert "Merge pull request #45 from Mintuse/stable"
Browse files Browse the repository at this point in the history
This reverts commit 498b2b0, reversing
changes made to 1ce89d2.
  • Loading branch information
DuoIncure committed Jun 23, 2023
1 parent 498b2b0 commit 199b1fa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Vecnavium/SkyBlocksPM/libs/jojoe77777/FormAPI/Form.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public function handleResponse(Player $player, $data) : void {
public function processData(&$data) : void {
}

public function jsonSerialize(): mixed {
public function jsonSerialize(){
return $this->data;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ private static function getType($value){

protected abstract function formatVariable(GenericVariable $variable, $value, ?string $placeHolder, array &$outArgs) : string;

public function jsonSerialize(): mixed {
public function jsonSerialize(){
return [
"name" => $this->name,
"query" => $this->query,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ public function equals(GenericVariable $that, &$diff = null) : bool{
return true;
}

public function jsonSerialize(): mixed {
public function jsonSerialize(){
return [
"name" => $this->name,
"isList" => $this->list,
Expand Down

0 comments on commit 199b1fa

Please sign in to comment.