Skip to content

Commit

Permalink
added level name and dimension getter
Browse files Browse the repository at this point in the history
  • Loading branch information
matthi4s committed Sep 30, 2022
1 parent 29cb68b commit fe1ba17
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/Analysis/Problem/CrashReport/TickingEntityProblem.php
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,22 @@ public function getLocationZ(): ?float
return $this->locationZ;
}

/**
* @return string|null
*/
public function getDimension(): ?string
{
return $this->dimension;
}

/**
* @return string|null
*/
public function getLevelName(): ?string
{
return $this->levelName;
}

/**
* @param array $matches
* @param mixed $patternKey
Expand Down

0 comments on commit fe1ba17

Please sign in to comment.