-
-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
53a5ff6
commit ae399f9
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<?php | ||
|
||
namespace App\Rules; | ||
|
||
use Closure; | ||
use Illuminate\Contracts\Validation\ValidationRule; | ||
|
||
class Port implements ValidationRule | ||
{ | ||
/** | ||
* Run the validation rule. | ||
* | ||
* @param \Closure(string): \Illuminate\Translation\PotentiallyTranslatedString $fail | ||
*/ | ||
public function validate(string $attribute, mixed $value, Closure $fail): void | ||
{ | ||
if (!is_numeric($value)) { | ||
$fail('The :attribute must be numeric.'); | ||
} | ||
|
||
$value = intval($value); | ||
if (floatval($value) !== (float) $value) { | ||
$fail('The :attribute must be an integer.'); | ||
} | ||
|
||
if ($value < 0) { | ||
$fail('The :attribute must be greater or equal to 0.'); | ||
} | ||
|
||
if ($value > 65535) { | ||
$fail('The :attribute must be less or equal to 65535.'); | ||
} | ||
} | ||
} |