Skip to content

Commit

Permalink
refactor: fix PHP styling
Browse files Browse the repository at this point in the history
  • Loading branch information
preimpression authored and github-actions[bot] committed Nov 16, 2023
1 parent e5d8744 commit 167ba81
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app/Models/User/UserPet.php
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public function drops() {
->add($this->pet->dropData->frequency, $this->pet->dropData->interval)
->startOf($this->pet->dropData->interval),
]);
// if we delete old drop data, populate with new
// if we delete old drop data, populate with new
} elseif (!PetDrop::where('user_pet_id', $this->id)->where('drop_id', $this->pet->dropData->id)->first()) {
PetDrop::where('user_pet_id', $this->id)->delete();
PetDrop::create([
Expand Down
2 changes: 2 additions & 0 deletions app/Services/Item/SpliceService.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ public function getEditData() {
/**
* Processes the data attribute of the tag and returns it in the preferred format.
*
* @param mixed $tag
*
* @return mixed
*/
public function getTagData($tag) {
Expand Down

0 comments on commit 167ba81

Please sign in to comment.