In C# I can use a _ to "discard" a variable if I don't need it. Is there anything similar in PHP? I am currently using this but that doesn't really discard the variable for what I know
class PortalTenantInfoController extends Controller
{ >>>VVV<<<
public function getTenantInfoBasic(\Request $request, $_, string $portalName)
{
}
}