mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-22 03:26:22 +00:00
400 B
400 B
date | id | title |
---|---|---|
20201116 | 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;
}