@@ -549,7 +549,7 @@ function (OptionsResolver $resolver) {
549
549
},
550
550
['foo ' => 'baz ' ],
551
551
[
552
- 'type ' => E_USER_DEPRECATED ,
552
+ 'type ' => \ E_USER_DEPRECATED ,
553
553
'message ' => 'The option "foo" is deprecated. ' ,
554
554
],
555
555
1 ,
@@ -567,7 +567,7 @@ function (OptionsResolver $resolver) {
567
567
},
568
568
['foo ' => 'baz ' ],
569
569
[
570
- 'type ' => E_USER_DEPRECATED ,
570
+ 'type ' => \ E_USER_DEPRECATED ,
571
571
'message ' => 'The option "foo" is deprecated, use "bar" option instead. ' ,
572
572
],
573
573
2 ,
@@ -587,7 +587,7 @@ function (OptionsResolver $resolver) {
587
587
},
588
588
[],
589
589
[
590
- 'type ' => E_USER_DEPRECATED ,
590
+ 'type ' => \ E_USER_DEPRECATED ,
591
591
'message ' => 'The option "foo" is deprecated. ' ,
592
592
],
593
593
1 ,
@@ -609,7 +609,7 @@ function (OptionsResolver $resolver) {
609
609
},
610
610
['foo ' => new \stdClass ()],
611
611
[
612
- 'type ' => E_USER_DEPRECATED ,
612
+ 'type ' => \ E_USER_DEPRECATED ,
613
613
'message ' => 'Passing an instance of "stdClass" to option "foo" is deprecated, pass its FQCN instead. ' ,
614
614
],
615
615
1 ,
@@ -645,7 +645,7 @@ function (OptionsResolver $resolver) {
645
645
},
646
646
['foo ' => null ], // It triggers a deprecation
647
647
[
648
- 'type ' => E_USER_DEPRECATED ,
648
+ 'type ' => \ E_USER_DEPRECATED ,
649
649
'message ' => 'Passing a value different than true or false is deprecated. ' ,
650
650
],
651
651
1 ,
@@ -681,7 +681,7 @@ function (OptionsResolver $resolver) {
681
681
},
682
682
['widget ' => 'single_text ' , 'date_format ' => 2 ],
683
683
[
684
- 'type ' => E_USER_DEPRECATED ,
684
+ 'type ' => \ E_USER_DEPRECATED ,
685
685
'message ' => 'Using the "date_format" option when the "widget" option is set to "single_text" is deprecated. ' ,
686
686
],
687
687
1 ,
@@ -707,7 +707,7 @@ function (OptionsResolver $resolver) {
707
707
},
708
708
['foo ' => 'baz ' ], // It triggers a deprecation
709
709
[
710
- 'type ' => E_USER_DEPRECATED ,
710
+ 'type ' => \ E_USER_DEPRECATED ,
711
711
'message ' => 'The option "foo" is deprecated. ' ,
712
712
],
713
713
4 ,
0 commit comments