8000 Update dep messages · symfony/symfony@245ffd0 · GitHub
[go: up one dir, main page]

Skip to content

Commit 245ffd0

Browse files
committed
Update dep messages
1 parent 68800cd commit 245ffd0

25 files changed

+26
-26
lines changed

src/Symfony/Bridge/Twig/TwigEngine.php

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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