Skip to content

Commit 7ab8efb

Browse files
committed
fixed CS
1 parent f46d324 commit 7ab8efb

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

src/Symfony/Component/Debug/Tests/Fixtures/InternalTrait2.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public function internalMethod()
1515
}
1616

1717
/**
18-
* @internal but should not trigger a deprecation.
18+
* @internal but should not trigger a deprecation
1919
*/
2020
public function usedInInternalClass()
2121
{

src/Symfony/Component/HttpFoundation/Response.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -613,7 +613,7 @@ public function setPublic()
613613
/**
614614
* Marks the response as "immutable".
615615
*
616-
* @param bool $immutable Enables or disables the immutable directive.
616+
* @param bool $immutable enables or disables the immutable directive
617617
*
618618
* @return $this
619619
*/
@@ -631,7 +631,7 @@ public function setImmutable($immutable = true)
631631
/**
632632
* Returns true if the response is marked as "immutable".
633633
*
634-
* @return bool Returns true if the response is marked as "immutable"; otherwise false.
634+
* @return bool returns true if the response is marked as "immutable"; otherwise false
635635
*/
636636
public function isImmutable()
637637
{

src/Symfony/Component/Lock/Key.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public function resetLifetime()
7878
}
7979

8080
/**
81-
* @param float $ttl The expiration delay of locks in seconds.
81+
* @param float $ttl the expiration delay of locks in seconds
8282
*/
8383
public function reduceLifetime($ttl)
8484
{

src/Symfony/Component/Lock/LockInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ interface LockInterface
2828
*
2929
* @param bool $blocking Whether or not the Lock should wait for the release of someone else
3030
*
31-
* @return bool Whether or not the lock had been acquired.
31+
* @return bool whether or not the lock had been acquired
3232
*
3333
* @throws LockConflictedException If the lock is acquired by someone else in blocking mode
3434
* @throws LockAcquiringException If the lock can not be acquired

src/Symfony/Component/Lock/Store/SemaphoreStore.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class SemaphoreStore implements StoreInterface
2727
/**
2828
* Returns whether or not the store is supported.
2929
*
30-
* @param bool|null $blocking When not null, checked again the blocking mode.
30+
* @param bool|null $blocking when not null, checked again the blocking mode
3131
*
3232
* @return bool
3333
*

0 commit comments

Comments
 (0)