Skip to content

Commit f5ba3cb

Browse files
committed
removed dots at the end of @param and @return
1 parent 2a8b717 commit f5ba3cb

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

CacheClearer/CacheClearerInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ interface CacheClearerInterface
2121
/**
2222
* Clears any caches necessary.
2323
*
24-
* @param string $cacheDir The cache directory.
24+
* @param string $cacheDir The cache directory
2525
*/
2626
public function clear($cacheDir);
2727
}

CacheClearer/ChainCacheClearer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class ChainCacheClearer implements CacheClearerInterface
2626
/**
2727
* Constructs a new instance of ChainCacheClearer.
2828
*
29-
* @param array $clearers The initial clearers.
29+
* @param array $clearers The initial clearers
3030
*/
3131
public function __construct(array $clearers = array())
3232
{

EventListener/DumpListener.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ class DumpListener implements EventSubscriberInterface
2828
private $dumper;
2929

3030
/**
31-
* @param ClonerInterface $cloner Cloner service.
32-
* @param DataDumperInterface $dumper Dumper service.
31+
* @param ClonerInterface $cloner Cloner service
32+
* @param DataDumperInterface $dumper Dumper service
3333
*/
3434
public function __construct(ClonerInterface $cloner, DataDumperInterface $dumper)
3535
{

EventListener/ExceptionListener.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,10 +96,10 @@ protected function logException(\Exception $exception, $message)
9696
/**
9797
* Clones the request for the exception.
9898
*
99-
* @param \Exception $exception The thrown exception.
100-
* @param Request $request The original request.
99+
* @param \Exception $exception The thrown exception
100+
* @param Request $request The original request
101101
*
102-
* @return Request $request The cloned request.
102+
* @return Request $request The cloned request
103103
*/
104104
protected function duplicateRequest(\Exception $exception, Request $request)
105105
{

HttpCache/Esi.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class Esi implements SurrogateInterface
3737
/**
3838
* Constructor.
3939
*
40-
* @param array $contentTypes An array of content-type that should be parsed for ESI information.
40+
* @param array $contentTypes An array of content-type that should be parsed for ESI information
4141
* (default: text/html, text/xml, application/xhtml+xml, and application/xml)
4242
*/
4343
public function __construct(array $contentTypes = array('text/html', 'text/xml', 'application/xhtml+xml', 'application/xml'))

HttpCache/Ssi.php

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

KernelInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ interface KernelInterface extends HttpKernelInterface, \Serializable
2727
/**
2828
* Returns an array of bundles to register.
2929
*
30-
* @return BundleInterface[] An array of bundle instances.
30+
* @return BundleInterface[] An array of bundle instances
3131
*/
3232
public function registerBundles();
3333

Tests/Profiler/Mock/RedisMock.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ public function get($key)
137137
* @param string $key
138138
* @param string $value
139139
*
140-
* @return int Size of the value after the append.
140+
* @return int Size of the value after the append
141141
*/
142142
public function append($key, $value)
143143
{

0 commit comments

Comments
 (0)