Skip to content

Commit c95581e

Browse files
committed
Add return type
1 parent 3afe12a commit c95581e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/AxisAlignedBB.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public function addCoord(float $x, float $y, float $z) : AxisAlignedBB{
9292
*
9393
* Returns an expanded clone of this AxisAlignedBB.
9494
*/
95-
public function expandedCopy(float $x, float $y, float $z){
95+
public function expandedCopy(float $x, float $y, float $z): AxisAlignedBB{
9696
return new AxisAlignedBB(
9797
$this->minX - $x,
9898
$this->minY - $y,

0 commit comments

Comments
 (0)