Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 170ab63

Browse filesBrowse files
committed
fixed CS
1 parent 38b946e commit 170ab63
Copy full SHA for 170ab63

File tree

1 file changed

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

1 file changed

+14
-0
lines changed

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

Copy file name to clipboardExpand all lines: src/Symfony/Component/Validator/Constraints/Url.php
+14Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.