You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@trigger_error('The '.__NAMESPACE__.'\AjaxDataCollector class is deprecated since version 2.8 and will be removed in 3.0. Use Symfony\Component\HttpKernel\DataCollector\AjaxDataCollector instead.', E_USER_DEPRECATED);
16
+
@trigger_error('The '.__NAMESPACE__.'\AjaxDataCollector class is deprecated since Symfony 2.8 and will be removed in 3.0. Use Symfony\Component\HttpKernel\DataCollector\AjaxDataCollector instead.', E_USER_DEPRECATED);
Copy file name to clipboardExpand all lines: DependencyInjection/Compiler/FormPass.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -64,10 +64,10 @@ public function process(ContainerBuilder $container)
64
64
if (isset($tag[0]['extended_type'])) {
65
65
$extendedType = $tag[0]['extended_type'];
66
66
} elseif (isset($tag[0]['alias'])) {
67
-
@trigger_error(sprintf('The alias option of the form.type_extension tag of service "%s" is deprecated since version 2.8 and will be removed in 3.0. Use the extended_type option instead.', $serviceId), E_USER_DEPRECATED);
67
+
@trigger_error(sprintf('The alias option of the form.type_extension tag of service "%s" is deprecated since Symfony 2.8 and will be removed in 3.0. Use the extended_type option instead.', $serviceId), E_USER_DEPRECATED);
68
68
$extendedType = $tag[0]['alias'];
69
69
} else {
70
-
@trigger_error(sprintf('The extended_type option of the form.type_extension tag of service "%s" is required since version 2.8.', $serviceId), E_USER_DEPRECATED);
70
+
@trigger_error(sprintf('The extended_type option of the form.type_extension tag of service "%s" is required since Symfony 2.8.', $serviceId), E_USER_DEPRECATED);
@trigger_error('The profiler.dsn configuration key must start with "file:" because all the storages except the filesystem are deprecated since version 2.8 and will be removed in 3.0.', E_USER_DEPRECATED);
285
+
@trigger_error('The profiler.dsn configuration key must start with "file:" because all the storages except the filesystem are deprecated since Symfony 2.8 and will be removed in 3.0.', E_USER_DEPRECATED);
286
286
287
287
return$v;
288
288
})
@@ -293,7 +293,7 @@ private function addProfilerSection(ArrayNodeDefinition $rootNode)
293
293
->beforeNormalization()
294
294
->always()
295
295
->then(function ($v) {
296
-
@trigger_error('The profiler.username configuration key is deprecated since version 2.8 and will be removed in 3.0.', E_USER_DEPRECATED);
296
+
@trigger_error('The profiler.username configuration key is deprecated since Symfony 2.8 and will be removed in 3.0.', E_USER_DEPRECATED);
297
297
298
298
return$v;
299
299
})
@@ -304,7 +304,7 @@ private function addProfilerSection(ArrayNodeDefinition $rootNode)
304
304
->beforeNormalization()
305
305
->always()
306
306
->then(function ($v) {
307
-
@trigger_error('The profiler.password configuration key is deprecated since version 2.8 and will be removed in 3.0.', E_USER_DEPRECATED);
307
+
@trigger_error('The profiler.password configuration key is deprecated since Symfony 2.8 and will be removed in 3.0.', E_USER_DEPRECATED);
308
308
309
309
return$v;
310
310
})
@@ -315,7 +315,7 @@ private function addProfilerSection(ArrayNodeDefinition $rootNode)
315
315
->beforeNormalization()
316
316
->always()
317
317
->then(function ($v) {
318
-
@trigger_error('The profiler.lifetime configuration key is deprecated since version 2.8 and will be removed in 3.0.', E_USER_DEPRECATED);
318
+
@trigger_error('The profiler.lifetime configuration key is deprecated since Symfony 2.8 and will be removed in 3.0.', E_USER_DEPRECATED);
319
319
320
320
return$v;
321
321
})
@@ -663,7 +663,7 @@ private function addValidationSection(ArrayNodeDefinition $rootNode)
663
663
// Can be removed in 3.0, once ApcCache support is dropped
664
664
->ifString()->then(function ($v) {
665
665
if ('apc' === $v) {
666
-
@trigger_error('The ability to pass "apc" as the framework.validation.cache configuration key value is deprecated since version 2.8 and will be removed in 3.0. Use the "validator.mapping.cache.doctrine.apc" service id instead.', E_USER_DEPRECATED);
666
+
@trigger_error('The ability to pass "apc" as the framework.validation.cache configuration key value is deprecated since Symfony 2.8 and will be removed in 3.0. Use the "validator.mapping.cache.doctrine.apc" service id instead.', E_USER_DEPRECATED);
Copy file name to clipboardExpand all lines: Routing/DelegatingLoader.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -45,7 +45,7 @@ public function __construct(ControllerNameParser $parser, $resolver, $r = null)
45
45
$this->logger = $resolver;
46
46
$resolver = $r;
47
47
48
-
@trigger_error('Passing a LoggerInterface instance as the second argument of the '.__METHOD__.' method is deprecated since version 2.8 and will not be supported anymore in 3.0.', E_USER_DEPRECATED);
48
+
@trigger_error('Passing a LoggerInterface instance as the second argument of the '.__METHOD__.' method is deprecated since Symfony 2.8 and will not be supported anymore in 3.0.', E_USER_DEPRECATED);
@trigger_error('The '.__METHOD__.' method is deprecated since version 2.8 and will be removed in 3.0. Use the "path" or "url" method instead.', E_USER_DEPRECATED);
44
+
@trigger_error('The '.__METHOD__.' method is deprecated since Symfony 2.8 and will be removed in 3.0. Use the "path" or "url" method instead.', E_USER_DEPRECATED);
0 commit comments