Skip to content

Commit ceae3bf

Browse files
committed
fixed CS
1 parent ebfb240 commit ceae3bf

File tree

22 files changed

+25
-33
lines changed

22 files changed

+25
-33
lines changed

src/Symfony/Bridge/Twig/Tests/Extension/WorkflowExtensionTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
use PHPUnit\Framework\TestCase;
1515
use Symfony\Bridge\Twig\Extension\WorkflowExtension;
1616
use Symfony\Component\Workflow\Definition;
17-
use Symfony\Component\Workflow\Marking;
1817
use Symfony\Component\Workflow\Registry;
1918
use Symfony\Component\Workflow\SupportStrategy\ClassInstanceSupportStrategy;
2019
use Symfony\Component\Workflow\Transition;

src/Symfony/Bundle/SecurityBundle/Security/FirewallMap.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
namespace Symfony\Bundle\SecurityBundle\Security;
1313

1414
use Psr\Container\ContainerInterface;
15-
use Symfony\Bundle\SecurityBundle\Security\FirewallContext;
1615
use Symfony\Component\Security\Http\FirewallMapInterface;
1716
use Symfony\Component\HttpFoundation\Request;
1817

src/Symfony/Component/Cache/Traits/RedisTrait.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public function init($redisClient, $namespace = '', $defaultLifetime = 0)
6767
* @param string $dsn
6868
* @param array $options See self::$defaultConnectionOptions
6969
*
70-
* @throws InvalidArgumentException When the DSN is invalid.
70+
* @throws InvalidArgumentException when the DSN is invalid
7171
*
7272
* @return \Redis|\Predis\Client According to the "class" option
7373
*/

src/Symfony/Component/Console/Command/Command.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@ public function setHidden($hidden)
475475
}
476476

477477
/**
478-
* @return bool Whether the command should be publicly shown or not.
478+
* @return bool whether the command should be publicly shown or not
479479
*/
480480
public function isHidden()
481481
{

src/Symfony/Component/Console/Tester/CommandTester.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,8 +137,8 @@ public function getStatusCode()
137137
/**
138138
* Sets the user inputs.
139139
*
140-
* @param array An array of strings representing each input
141-
* passed to the command input stream.
140+
* @param array an array of strings representing each input
141+
* passed to the command input stream
142142
*
143143
* @return CommandTester
144144
*/

src/Symfony/Component/DependencyInjection/Loader/DirectoryLoader.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111

1212
namespace Symfony\Component\DependencyInjection\Loader;
1313

14-
use Symfony\Component\Config\Resource\DirectoryResource;
15-
1614
/**
1715
* DirectoryLoader is a recursive loader to go through directories.
1816
*

src/Symfony/Component/DependencyInjection/Loader/IniFileLoader.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111

1212
namespace Symfony\Component\DependencyInjection\Loader;
1313

14-
use Symfony\Component\Config\Resource\FileResource;
1514
use Symfony\Component\Config\Util\XmlUtils;
1615
use Symfony\Component\DependencyInjection\Exception\InvalidArgumentException;
1716

src/Symfony/Component/DependencyInjection/Loader/PhpFileLoader.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111

1212
namespace Symfony\Component\DependencyInjection\Loader;
1313

14-
use Symfony\Component\Config\Resource\FileResource;
15-
1614
/**
1715
* PhpFileLoader loads service definitions from a PHP file.
1816
*

src/Symfony/Component/Form/Extension/Core/DataTransformer/DateIntervalToArrayTransformer.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public function __construct(array $fields = null, $pad = false)
6262
*
6363
* @return array Interval array
6464
*
65-
* @throws UnexpectedTypeException If the given value is not a \DateInterval instance.
65+
* @throws UnexpectedTypeException if the given value is not a \DateInterval instance
6666
*/
6767
public function transform($dateInterval)
6868
{
@@ -108,8 +108,8 @@ public function transform($dateInterval)
108108
*
109109
* @return \DateInterval Normalized date interval
110110
*
111-
* @throws UnexpectedTypeException If the given value is not an array.
112-
* @throws TransformationFailedException If the value could not be transformed.
111+
* @throws UnexpectedTypeException if the given value is not an array
112+
* @throws TransformationFailedException if the value could not be transformed
113113
*/
114114
public function reverseTransform($value)
115115
{

src/Symfony/Component/Form/Extension/Core/DataTransformer/DateIntervalToStringTransformer.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public function __construct($format = 'P%yY%mM%dDT%hH%iM%sS', $parseSigned = fal
4646
*
4747
* @return string An ISO 8601 or relative date string like date interval presentation
4848
*
49-
* @throws UnexpectedTypeException If the given value is not a \DateInterval instance.
49+
* @throws UnexpectedTypeException if the given value is not a \DateInterval instance
5050
*/
5151
public function transform($value)
5252
{
@@ -67,8 +67,8 @@ public function transform($value)
6767
*
6868
* @return \DateInterval An instance of \DateInterval
6969
*
70-
* @throws UnexpectedTypeException If the given value is not a string.
71-
* @throws TransformationFailedException If the date interval could not be parsed.
70+
* @throws UnexpectedTypeException if the given value is not a string
71+
* @throws TransformationFailedException if the date interval could not be parsed
7272
*/
7373
public function reverseTransform($value)
7474
{

0 commit comments

Comments
 (0)