mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-22 19:46:23 +00:00
385 B
385 B
id | title |
---|---|
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;
}