Detect if IP is SeedBox

This commit is contained in:
xiaomlove
2024-11-22 01:37:57 +08:00
parent c864a34412
commit c537ebc1a2
10 changed files with 77 additions and 6 deletions

View File

@@ -0,0 +1,20 @@
<?php
namespace App\Exceptions;
class SeedBoxYesException extends NexusException
{
private int $id;
public function __construct($id)
{
parent::__construct();
$this->id = $id;
}
public function getId(): int
{
return $this->id;
}
}