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 245ffd0

Browse filesBrowse files
committed
Update dep messages
1 parent 68800cd commit 245ffd0
Copy full SHA for 245ffd0

25 files changed

+26
-26
lines changed

‎src/Symfony/Bridge/Twig/TwigEngine.php

Copy file name to clipboardExpand all lines: src/Symfony/Bridge/Twig/TwigEngine.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
*
2424
* @author Fabien Potencier <fabien@symfony.com>
2525
*
26-
* @deprecated The TwigEngine class will be removed in Symfony 4.0. You should use \Twig_Environment directly instead.
26+
* @deprecated since version 3.3, to be removed in 4.0. Use Twig instead.
2727
*/
2828
class TwigEngine implements EngineInterface, StreamingEngineInterface
2929
{

‎src/Symfony/Bundle/FrameworkBundle/CacheWarmer/TemplateFinder.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/FrameworkBundle/CacheWarmer/TemplateFinder.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
*
2424
* @author Victor Berchet <victor@suumit.com>
2525
*
26-
* @deprecated The TemplateFinder class will be removed in Symfony 4.0. You should use Twig instead.
26+
* @deprecated since version 3.3, to be removed in 4.0. Use Twig instead.
2727
*/
2828
class TemplateFinder implements TemplateFinderInterface
2929
{

‎src/Symfony/Bundle/FrameworkBundle/CacheWarmer/TemplateFinderInterface.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/FrameworkBundle/CacheWarmer/TemplateFinderInterface.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
*
1919
* @author Victor Berchet <victor@suumit.com>
2020
*
21-
* @deprecated The TemplateFinderInterface interface will be removed in Symfony 4.0. You should use Twig instead.
21+
* @deprecated since version 3.3, to be removed in 4.0. Use Twig instead.
2222
*/
2323
interface TemplateFinderInterface
2424
{

‎src/Symfony/Bundle/FrameworkBundle/CacheWarmer/TemplatePathsCacheWarmer.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/FrameworkBundle/CacheWarmer/TemplatePathsCacheWarmer.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
*
2323
* @author Fabien Potencier <fabien@symfony.com>
2424
*
25-
* @deprecated The TemplatePathsCacheWarmer class will be removed in Symfony 4.0. You should use Twig instead.
25+
* @deprecated since version 3.3, to be removed in 4.0. Use Twig instead.
2626
*/
2727
class TemplatePathsCacheWarmer extends CacheWarmer
2828
{

‎src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/TemplatingPass.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/TemplatingPass.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
use Symfony\Component\Templating\EngineInterface as ComponentEngineInterface;
1919

2020
/**
21-
* @deprecated The TemplatingPass class will be removed in Symfony 4.0. You should use Twig instead.
21+
* @deprecated since version 3.3, to be removed in 4.0. Use Twig instead.
2222
*/
2323
class TemplatingPass implements CompilerPassInterface
2424
{
@@ -36,7 +36,7 @@ public function process(ContainerBuilder $container)
3636
if ($container->hasDefinition('templating.engine.php')) {
3737
$helpers = array();
3838
foreach ($container->findTaggedServiceIds('templating.helper') as $id => $attributes) {
39-
@trigger_error('The '.self::class.' class is deprecated since version 3.3 and will be removed in 4.0. Use Twig instead.', E_USER_DEPRECATED);
39+
@trigger_error('The "templating.helper" tag is since version 3.3 and will be removed in 4.0. Use Twig instead.', E_USER_DEPRECATED);
4040

4141
if (isset($attributes[0]['alias'])) {
4242
$helpers[$attributes[0]['alias']] = $id;

‎src/Symfony/Bundle/FrameworkBundle/Templating/DelegatingEngine.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/FrameworkBundle/Templating/DelegatingEngine.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
*
2323
* @author Fabien Potencier <fabien@symfony.com>
2424
*
25-
* @deprecated The DelegatingEngine class will be removed in Symfony 4.0. You should use Twig instead.
25+
* @deprecated since version 3.3, to be removed in 4.0. Use Twig instead.
2626
*/
2727
class DelegatingEngine extends BaseDelegatingEngine implements EngineInterface
2828
{

‎src/Symfony/Bundle/FrameworkBundle/Templating/EngineInterface.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/FrameworkBundle/Templating/EngineInterface.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
*
2222
* @author Fabien Potencier <fabien@symfony.com>
2323
*
24-
* @deprecated The EngineInterface interface will be removed in Symfony 4.0. You should use Twig instead.
24+
* @deprecated since version 3.3, to be removed in 4.0. Use Twig instead.
2525
*/
2626
interface EngineInterface extends BaseEngineInterface
2727
{

‎src/Symfony/Bundle/FrameworkBundle/Templating/GlobalVariables.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/FrameworkBundle/Templating/GlobalVariables.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
*
2424
* @author Fabien Potencier <fabien@symfony.com>
2525
*
26-
* @deprecated The GlobalVariables class will be removed in Symfony 4.0. You should use Twig instead.
26+
* @deprecated since version 3.3, to be removed in 4.0. Use Twig instead.
2727
*/
2828
class GlobalVariables
2929
{

‎src/Symfony/Bundle/FrameworkBundle/Templating/Helper/ActionsHelper.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/FrameworkBundle/Templating/Helper/ActionsHelper.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
*
2323
* @author Fabien Potencier <fabien@symfony.com>
2424
*
25-
* @deprecated The ActionsHelper class will be removed in Symfony 4.0. You should use Twig instead.
25+
* @deprecated since version 3.3, to be removed in 4.0. Use Twig instead.
2626
*/
2727
class ActionsHelper extends Helper
2828
{

‎src/Symfony/Bundle/FrameworkBundle/Templating/Helper/AssetsHelper.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/FrameworkBundle/Templating/Helper/AssetsHelper.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
*
2222
* @author Fabien Potencier <fabien@symfony.com>
2323
*
24-
* @deprecated The AssetsHelper class will be removed in Symfony 4.0. You should use Twig instead.
24+
* @deprecated since version 3.3, to be removed in 4.0. Use Twig instead.
2525
*/
2626
class AssetsHelper extends Helper
2727
{

‎src/Symfony/Bundle/FrameworkBundle/Templating/Helper/CodeHelper.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/FrameworkBundle/Templating/Helper/CodeHelper.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
*
2222
* @author Fabien Potencier <fabien@symfony.com>
2323
*
24-
* @deprecated The CodeHelper class will be removed in Symfony 4.0. You should use Twig instead.
24+
* @deprecated since version 3.3, to be removed in 4.0. Use Twig instead.
2525
*/
2626
class CodeHelper extends Helper
2727
{

‎src/Symfony/Bundle/FrameworkBundle/Templating/Helper/FormHelper.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/FrameworkBundle/Templating/Helper/FormHelper.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* @author Fabien Potencier <fabien@symfony.com>
2424
* @author Bernhard Schussek <bschussek@gmail.com>
2525
*
26-
* @deprecated The FormHelper class will be removed in Symfony 4.0. You should use Twig instead.
26+
* @deprecated since version 3.3, to be removed in 4.0. Use Twig instead.
2727
*/
2828
class FormHelper extends Helper
2929
{

‎src/Symfony/Bundle/FrameworkBundle/Templating/Helper/RequestHelper.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/FrameworkBundle/Templating/Helper/RequestHelper.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
*
2222
* @author Fabien Potencier <fabien@symfony.com>
2323
*
24-
* @deprecated The RequestHelper class will be removed in Symfony 4.0. You should use Twig instead.
24+
* @deprecated since version 3.3, to be removed in 4.0. Use Twig instead.
2525
*/
2626
class RequestHelper extends Helper
2727
{

‎src/Symfony/Bundle/FrameworkBundle/Templating/Helper/RouterHelper.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/FrameworkBundle/Templating/Helper/RouterHelper.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
*
2222
* @author Fabien Potencier <fabien@symfony.com>
2323
*
24-
* @deprecated The RouterHelper class will be removed in Symfony 4.0. You should use Twig instead.
24+
* @deprecated since version 3.3, to be removed in 4.0. Use Twig instead.
2525
*/
2626
class RouterHelper extends Helper
2727
{

‎src/Symfony/Bundle/FrameworkBundle/Templating/Helper/SessionHelper.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/FrameworkBundle/Templating/Helper/SessionHelper.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
*
2222
* @author Fabien Potencier <fabien@symfony.com>
2323
*
24-
* @deprecated The SessionHelper class will be removed in Symfony 4.0. You should use Twig instead.
24+
* @deprecated since version 3.3, to be removed in 4.0. Use Twig instead.
2525
*/
2626
class SessionHelper extends Helper
2727
{

‎src/Symfony/Bundle/FrameworkBundle/Templating/Helper/StopwatchHelper.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/FrameworkBundle/Templating/Helper/StopwatchHelper.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
*
2222
* @author Wouter J <wouter@wouterj.nl>
2323
*
24-
* @deprecated The StopwatchHelper class will be removed in Symfony 4.0. You should use Twig instead.
24+
* @deprecated since version 3.3, to be removed in 4.0. Use Twig instead.
2525
*/
2626
class StopwatchHelper extends Helper
2727
{

‎src/Symfony/Bundle/FrameworkBundle/Templating/Helper/TranslatorHelper.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/FrameworkBundle/Templating/Helper/TranslatorHelper.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
*
2222
* @author Fabien Potencier <fabien@symfony.com>
2323
*
24-
* @deprecated The TranslatorHelper class will be removed in Symfony 4.0. You should use Twig instead.
24+
* @deprecated since version 3.3, to be removed in 4.0. Use Twig instead.
2525
*/
2626
class TranslatorHelper extends Helper
2727
{

‎src/Symfony/Bundle/FrameworkBundle/Templating/Loader/FilesystemLoader.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/FrameworkBundle/Templating/Loader/FilesystemLoader.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
*
2424
* @author Fabien Potencier <fabien@symfony.com>
2525
*
26-
* @deprecated The FilesystemLoader class will be removed in Symfony 4.0. You should use Twig instead.
26+
* @deprecated since version 3.3, to be removed in 4.0. Use Twig instead.
2727
*/
2828
class FilesystemLoader implements LoaderInterface
2929
{

‎src/Symfony/Bundle/FrameworkBundle/Templating/Loader/TemplateLocator.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/FrameworkBundle/Templating/Loader/TemplateLocator.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
*
2222
* @author Fabien Potencier <fabien@symfony.com>
2323
*
24-
* @deprecated The TemplateLocator class will be removed in Symfony 4.0. You should use Twig instead.
24+
* @deprecated since version 3.3, to be removed in 4.0. Use Twig instead.
2525
*/
2626
class TemplateLocator implements FileLocatorInterface
2727
{

‎src/Symfony/Bundle/FrameworkBundle/Templating/PhpEngine.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/FrameworkBundle/Templating/PhpEngine.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
*
2525
* @author Fabien Potencier <fabien@symfony.com>
2626
*
27-
* @deprecated The PhpEngine class will be removed in Symfony 4.0. You should use Twig instead.
27+
* @deprecated since version 3.3, to be removed in 4.0. Use Twig instead.
2828
*/
2929
class PhpEngine extends BasePhpEngine implements EngineInterface
3030
{

‎src/Symfony/Bundle/FrameworkBundle/Templating/TemplateFilenameParser.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/FrameworkBundle/Templating/TemplateFilenameParser.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
*
2323
* @author Fabien Potencier <fabien@symfony.com>
2424
*
25-
* @deprecated The TemplateFilenameParser class will be removed in Symfony 4.0. You should use Twig instead.
25+
* @deprecated since version 3.3, to be removed in 4.0. Use Twig instead.
2626
*/
2727
class TemplateFilenameParser implements TemplateNameParserInterface
2828
{

‎src/Symfony/Bundle/FrameworkBundle/Templating/TemplateNameParser.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/FrameworkBundle/Templating/TemplateNameParser.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
*
2525
* @author Fabien Potencier <fabien@symfony.com>
2626
*
27-
* @deprecated The TemplateNameParser class will be removed in Symfony 4.0. You should use Twig instead.
27+
* @deprecated since version 3.3, to be removed in 4.0. Use Twig instead.
2828
*/
2929
class TemplateNameParser extends BaseTemplateNameParser
3030
{

‎src/Symfony/Bundle/FrameworkBundle/Templating/TemplateReference.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/FrameworkBundle/Templating/TemplateReference.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*
2121
* @author Victor Berchet <victor@suumit.com>
2222
*
23-
* @deprecated The TemplateReference class will be removed in Symfony 4.0. You should use Twig instead.
23+
* @deprecated since version 3.3, to be removed in 4.0. Use Twig instead.
2424
*/
2525
class TemplateReference extends BaseTemplateReference
2626
{

‎src/Symfony/Bundle/FrameworkBundle/Templating/TimedPhpEngine.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/FrameworkBundle/Templating/TimedPhpEngine.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
*
2424
* @author Fabien Potencier <fabien@symfony.com>
2525
*
26-
* @deprecated The TimedPhpEngine class will be removed in Symfony 4.0. You should use Twig instead.
26+
* @deprecated since version 3.3, to be removed in 4.0. Use Twig instead.
2727
*/
2828
class TimedPhpEngine extends PhpEngine
2929
{

‎src/Symfony/Bundle/TwigBundle/TwigEngine.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/TwigBundle/TwigEngine.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
*
2626
* @author Fabien Potencier <fabien@symfony.com>
2727
*
28-
* @deprecated The TwigEngine class will be removed in Symfony 4.0. You should use \Twig_Environment directly instead.
28+
* @deprecated since version 3.3, to be removed in 4.0. Use Twig instead.
2929
*/
3030
class TwigEngine extends BaseEngine implements EngineInterface
3131
{

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.