mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-21 19:16:23 +00:00
402 B
402 B
date | id | title |
---|---|---|
2020-11-16 | de7c8974-5636-4e6d-baf7-afc90985c535 | Hostname Constraint |
Description
Validates hostname
Syntax
// src/Entity/ServerSettings.php
namespace App\Entity;
use Symfony\Component\Validator\Constraints as Assert;
class ServerSettings
{
/**
* @Assert\Hostname(message="The server name must be a valid hostname.")
*/
protected $name;
}