Skip to content

Commit 22e3427

Browse files
committed
fixed CS
1 parent 24dd1a9 commit 22e3427

File tree

33 files changed

+78
-78
lines changed

33 files changed

+78
-78
lines changed

src/Symfony/Bridge/Doctrine/DependencyInjection/AbstractDoctrineExtension.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ abstract class AbstractDoctrineExtension extends Extension
3535
protected $drivers = [];
3636

3737
/**
38-
* @param array $objectManager A configured object manager
38+
* @param array $objectManager A configured object manager
3939
*
4040
* @throws \InvalidArgumentException
4141
*/

src/Symfony/Bundle/FrameworkBundle/HttpCache/HttpCache.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class HttpCache extends BaseHttpCache
2929
protected $kernel;
3030

3131
/**
32-
* @param string $cacheDir The cache directory (default used if null)
32+
* @param string $cacheDir The cache directory (default used if null)
3333
*/
3434
public function __construct(KernelInterface $kernel, string $cacheDir = null)
3535
{
@@ -42,8 +42,8 @@ public function __construct(KernelInterface $kernel, string $cacheDir = null)
4242
/**
4343
* Forwards the Request to the backend and returns the Response.
4444
*
45-
* @param bool $raw Whether to catch exceptions or not
46-
* @param Response $entry A Response instance (the stale entry if present, null otherwise)
45+
* @param bool $raw Whether to catch exceptions or not
46+
* @param Response $entry A Response instance (the stale entry if present, null otherwise)
4747
*
4848
* @return Response A Response instance
4949
*/

src/Symfony/Bundle/FrameworkBundle/Routing/Router.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ class Router extends BaseRouter implements WarmableInterface, ServiceSubscriberI
3636
private $paramFetcher;
3737

3838
/**
39-
* @param mixed $resource The main resource to load
40-
* @param array $options An array of options
39+
* @param mixed $resource The main resource to load
40+
* @param array $options An array of options
4141
*/
4242
public function __construct(ContainerInterface $container, $resource, array $options = [], RequestContext $context = null, ContainerInterface $parameters = null, LoggerInterface $logger = null, string $defaultLocale = null)
4343
{

src/Symfony/Bundle/FrameworkBundle/Translation/Translator.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@ class Translator extends BaseTranslator implements WarmableInterface
6565
* * debug: Whether to enable debugging or not (false by default)
6666
* * resource_files: List of translation resources available grouped by locale.
6767
*
68-
* @param string $defaultLocale
69-
* @param array $loaderIds An array of loader Ids
70-
* @param array $options An array of options
68+
* @param string $defaultLocale
69+
* @param array $loaderIds An array of loader Ids
70+
* @param array $options An array of options
7171
*
7272
* @throws InvalidArgumentException
7373
*/

src/Symfony/Bundle/TwigBundle/TemplateIterator.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ class TemplateIterator implements \IteratorAggregate
2929
private $defaultPath;
3030

3131
/**
32-
* @param array $paths Additional Twig paths to warm
33-
* @param string|null $defaultPath The directory where global templates can be stored
32+
* @param array $paths Additional Twig paths to warm
33+
* @param string|null $defaultPath The directory where global templates can be stored
3434
*/
3535
public function __construct(KernelInterface $kernel, array $paths = [], string $defaultPath = null)
3636
{

src/Symfony/Bundle/WebProfilerBundle/DependencyInjection/WebProfilerExtension.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class WebProfilerExtension extends Extension
3636
/**
3737
* Loads the web profiler configuration.
3838
*
39-
* @param array $configs An array of configuration settings
39+
* @param array $configs An array of configuration settings
4040
*/
4141
public function load(array $configs, ContainerBuilder $container)
4242
{

src/Symfony/Component/BrowserKit/AbstractBrowser.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -682,7 +682,7 @@ protected function getAbsoluteUri(string $uri)
682682
/**
683683
* Makes a request from a Request object directly.
684684
*
685-
* @param bool $changeHistory Whether to update the history or not (only used internally for back(), forward(), and reload())
685+
* @param bool $changeHistory Whether to update the history or not (only used internally for back(), forward(), and reload())
686686
*
687687
* @return Crawler
688688
*/

src/Symfony/Component/Console/Helper/ProgressBar.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ final class ProgressBar
5252
private static $formats;
5353

5454
/**
55-
* @param int $max Maximum steps (0 if unknown)
55+
* @param int $max Maximum steps (0 if unknown)
5656
*/
5757
public function __construct(OutputInterface $output, int $max = 0, float $minSecondsBetweenRedraws = 0.1)
5858
{

src/Symfony/Component/Console/Helper/QuestionHelper.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -353,8 +353,8 @@ private function mostRecentlyEnteredValue(string $entered)
353353
/**
354354
* Gets a hidden response from user.
355355
*
356-
* @param resource $inputStream The handler resource
357-
* @param bool $trimmable Is the answer trimmable
356+
* @param resource $inputStream The handler resource
357+
* @param bool $trimmable Is the answer trimmable
358358
*
359359
* @throws RuntimeException In case the fallback is deactivated and the response cannot be hidden
360360
*/
@@ -415,7 +415,7 @@ private function getHiddenResponse(OutputInterface $output, $inputStream, bool $
415415
/**
416416
* Validates an attempt.
417417
*
418-
* @param callable $interviewer A callable that will ask for a question and return the result
418+
* @param callable $interviewer A callable that will ask for a question and return the result
419419
*
420420
* @return mixed The validated response
421421
*

src/Symfony/Component/ErrorHandler/FatalErrorHandler/FatalErrorHandlerInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ interface FatalErrorHandlerInterface
2323
/**
2424
* Attempts to convert an error into an exception.
2525
*
26-
* @param array $error An array as returned by error_get_last()
26+
* @param array $error An array as returned by error_get_last()
2727
*
2828
* @return FatalErrorException|null A FatalErrorException instance if the class is able to convert the error, null otherwise
2929
*/

0 commit comments

Comments
 (0)