Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 170ab63

Browse files
committed
fixed CS
1 parent 38b946e commit 170ab63

File tree

1 file changed

+14
-0
lines changed
  • src/Symfony/Component/Validator/Constraints

1 file changed

+14
-0
lines changed

src/Symfony/Component/Validator/Constraints/Url.php

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,50 +25,62 @@ class Url extends Constraint
2525
* @deprecated since Symfony 4.1, to be removed in 5.0
2626
*/
2727
const CHECK_DNS_TYPE_ANY = 'ANY';
28+
2829
/**
2930
* @deprecated since Symfony 4.1, to be removed in 5.0
3031
*/
3132
const CHECK_DNS_TYPE_NONE = false;
33+
3234
/**
3335
* @deprecated since Symfony 4.1, to be removed in 5.0
3436
*/
3537
const CHECK_DNS_TYPE_A = 'A';
38+
3639
/**
3740
* @deprecated since Symfony 4.1, to be removed in 5.0
3841
*/
3942
const CHECK_DNS_TYPE_A6 = 'A6';
43+
4044
/**
4145
* @deprecated since Symfony 4.1, to be removed in 5.0
4246
*/
4347
const CHECK_DNS_TYPE_AAAA = 'AAAA';
48+
4449
/**
4550
* @deprecated since Symfony 4.1, to be removed in 5.0
4651
*/
4752
const CHECK_DNS_TYPE_CNAME = 'CNAME';
53+
4854
/**
4955
* @deprecated since Symfony 4.1, to be removed in 5.0
5056
*/
5157
const CHECK_DNS_TYPE_MX = 'MX';
58+
5259
/**
5360
* @deprecated since Symfony 4.1, to be removed in 5.0
5461
*/
5562
const CHECK_DNS_TYPE_NAPTR = 'NAPTR';
63+
5664
/**
5765
* @deprecated since Symfony 4.1, to be removed in 5.0
5866
*/
5967
const CHECK_DNS_TYPE_NS = 'NS';
68+
6069
/**
6170
* @deprecated since Symfony 4.1, to be removed in 5.0
6271
*/
6372
const CHECK_DNS_TYPE_PTR = 'PTR';
73+
6474
/**
6575
* @deprecated since Symfony 4.1, to be removed in 5.0
6676
*/
6777
const CHECK_DNS_TYPE_SOA = 'SOA';
78+
6879
/**
6980
* @deprecated since Symfony 4.1, to be removed in 5.0
7081
*/
7182
const CHECK_DNS_TYPE_SRV = 'SRV';
83+
7284
/**
7385
* @deprecated since Symfony 4.1, to be removed in 5.0
7486
*/
@@ -81,11 +93,13 @@ class Url extends Constraint
8193
);
8294

8395
public $message = 'This value is not a valid URL.';
96+
8497
/**
8598
* @deprecated since Symfony 4.1, to be removed in 5.0
8699
*/
87100
public $dnsMessage = 'The host could not be resolved.';
88101
public $protocols = array('http', 'https');
102+
89103
/**
90104
* @deprecated since Symfony 4.1, to be removed in 5.0
91105
*/

0 commit comments

Comments
 (0)