Skip to content

Commit c3a71f9

Browse files
committed
Remove @var to specific content of variable
1 parent 0fdc693 commit c3a71f9

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/AxisAlignedBB.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,6 @@ public function calculateIntercept(Vector3 $pos1, Vector3 $pos2) : ?RayTraceResu
448448

449449
$vector = null;
450450
$distance = PHP_INT_MAX;
451-
/** @var Facing $face */
452451
$face = null;
453452

454453
foreach([
@@ -463,7 +462,6 @@ public function calculateIntercept(Vector3 $pos1, Vector3 $pos2) : ?RayTraceResu
463462
if($v !== null and ($d = $pos1->distanceSquared($v)) < $distance){
464463
$vector = $v;
465464
$distance = $d;
466-
/** @var Facing $face */
467465
$face = $value[0];
468466
}
469467
}

0 commit comments

Comments
 (0)