Skip to content

Commit 44e05e6

Browse files
committed
Merge branch '2.3' into 2.5
* 2.3: Use PHPUnit ini_set wrapper in tests [Process] Added a test skip check for Windows [Process] Removed unused variable assignment Fixes various phpdoc and coding standards. Fixes Issue #13184 - incremental output getters now return empty strings Updated copyright to 2015 Conflicts: src/Symfony/Bridge/Doctrine/Form/ChoiceList/EntityChoiceList.php src/Symfony/Bridge/Propel1/Form/ChoiceList/ModelChoiceList.php src/Symfony/Bundle/TwigBundle/Command/LintCommand.php src/Symfony/Component/Debug/ExceptionHandler.php src/Symfony/Component/Process/Tests/AbstractProcessTest.php
2 parents 07e40f8 + e278625 commit 44e05e6

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

DependencyInjection/Configuration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class Configuration implements ConfigurationInterface
2525
/**
2626
* Generates the configuration tree builder.
2727
*
28-
* @return \Symfony\Component\Config\Definition\Builder\TreeBuilder The tree builder
28+
* @return TreeBuilder The tree builder
2929
*/
3030
public function getConfigTreeBuilder()
3131
{

Extension/ActionsExtension.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
namespace Symfony\Bundle\TwigBundle\Extension;
1313

1414
use Symfony\Bundle\TwigBundle\TokenParser\RenderTokenParser;
15+
use Symfony\Bundle\FrameworkBundle\Templating\Helper\ActionsHelper;
1516
use Symfony\Component\DependencyInjection\ContainerInterface;
1617

1718
/**
@@ -41,7 +42,7 @@ public function __construct(ContainerInterface $container)
4142
* @param string $uri A URI
4243
* @param array $options An array of options
4344
*
44-
* @see Symfony\Bundle\FrameworkBundle\Controller\ControllerResolver::render()
45+
* @see ActionsHelper::render()
4546
*/
4647
public function renderUri($uri, array $options = array())
4748
{
@@ -51,7 +52,7 @@ public function renderUri($uri, array $options = array())
5152
/**
5253
* Returns the token parser instance to add to the existing list.
5354
*
54-
* @return array An array of Twig_TokenParser instances
55+
* @return array An array of \Twig_TokenParser instances
5556
*/
5657
public function getTokenParsers()
5758
{

Resources/meta/LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2004-2014 Fabien Potencier
1+
Copyright (c) 2004-2015 Fabien Potencier
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy
44
of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)