Skip to content

Commit 8356d15

Browse files
committed
fixed CS
1 parent c53cb57 commit 8356d15

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

src/Symfony/Bundle/FrameworkBundle/Command/ConfigDebugCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ private function compileContainer()
120120
/**
121121
* Iterate over configuration until the last step of the given path.
122122
*
123-
* @param array $config A bundle configuration.
123+
* @param array $config A bundle configuration
124124
*
125125
* @throws LogicException If the configuration does not exist
126126
*

src/Symfony/Component/Cache/Adapter/TagAwareAdapterInterface.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ interface TagAwareAdapterInterface extends AdapterInterface
2323
/**
2424
* Invalidates cached items using tags.
2525
*
26-
* @param string|string[] $tags A tag or an array of tags to invalidate.
26+
* @param string|string[] $tags A tag or an array of tags to invalidate
2727
*
28-
* @return bool True on success.
28+
* @return bool True on success
2929
*
3030
* @throws InvalidArgumentException When $tags is not valid.
3131
*/

src/Symfony/Component/Cache/TaggedCacheItemInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ interface TaggedCacheItemInterface extends CacheItemInterface
2424
/**
2525
* Adds a tag to a cache item.
2626
*
27-
* @param string|string[] $tags A tag or array of tags.
27+
* @param string|string[] $tags A tag or array of tags
2828
*
2929
* @return static
3030
*

src/Symfony/Component/DependencyInjection/Compiler/PassConfig.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ public function setRemovingPasses(array $passes)
238238
/**
239239
* Sort passes by priority.
240240
*
241-
* @param array $passes CompilerPassInterface instances with their priority as key.
241+
* @param array $passes CompilerPassInterface instances with their priority as key
242242
*
243243
* @return CompilerPassInterface[]
244244
*/

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@ public function __construct(array $fields = null, $pad = false)
5757
/**
5858
* Transforms a normalized date interval into an interval array.
5959
*
60-
* @param \DateInterval $dateInterval Normalized date interval.
60+
* @param \DateInterval $dateInterval Normalized date interval
6161
*
62-
* @return array Interval array.
62+
* @return array Interval array
6363
*
6464
* @throws UnexpectedTypeException If the given value is not a \DateInterval instance.
6565
*/

src/Symfony/Component/HttpKernel/HttpCache/AbstractSurrogate.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ abstract class AbstractSurrogate implements SurrogateInterface
3232
/**
3333
* Constructor.
3434
*
35-
* @param array $contentTypes An array of content-type that should be parsed for Surrogate information.
35+
* @param array $contentTypes An array of content-type that should be parsed for Surrogate information
3636
* (default: text/html, text/xml, application/xhtml+xml, and application/xml)
3737
*/
3838
public function __construct(array $contentTypes = array('text/html', 'text/xml', 'application/xhtml+xml', 'application/xml'))

src/Symfony/Component/VarDumper/Dumper/HtmlDumper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public function setStyles(array $styles)
8484
/**
8585
* Configures display options.
8686
*
87-
* @param array $displayOptions A map of display options to customize the behavior.
87+
* @param array $displayOptions A map of display options to customize the behavior
8888
*/
8989
public function setDisplayOptions(array $displayOptions)
9090
{

0 commit comments

Comments
 (0)