Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/Symfony/Component/Semaphore/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
CHANGELOG
=========

5.3
---

* The component is not marked as `@experimental` anymore

5.2.0
-----

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@
/**
* Base ExceptionInterface for the Semaphore Component.
*
* @experimental in 5.3
*
* @author Jérémy Derussé <[email protected]>
*/
interface ExceptionInterface extends \Throwable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@
namespace Symfony\Component\Semaphore\Exception;

/**
* @experimental in 5.3
*
* @author Jérémy Derussé <[email protected]>
*/
class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@
namespace Symfony\Component\Semaphore\Exception;

/**
* @experimental in 5.3
*
* @author Grégoire Pineau <[email protected]>
*/
class RuntimeException extends \RuntimeException implements ExceptionInterface
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@
/**
* SemaphoreAcquiringException is thrown when an issue happens during the acquisition of a semaphore.
*
* @experimental in 5.3
*
* @author Jérémy Derussé <[email protected]>
* @author Grégoire Pineau <[email protected]>
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@
/**
* SemaphoreExpiredException is thrown when a semaphore may conflict due to a TTL expiration.
*
* @experimental in 5.3
*
* @author Jérémy Derussé <[email protected]>
* @author Grégoire Pineau <[email protected]>
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@
/**
* SemaphoreReleasingException is thrown when an issue happens during the release of a semaphore.
*
* @experimental in 5.3
*
* @author Jérémy Derussé <[email protected]>
* @author Grégoire Pineau <[email protected]>
*/
Expand Down
2 changes: 0 additions & 2 deletions src/Symfony/Component/Semaphore/Key.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@
/**
* Key is a container for the state of the semaphores in stores.
*
* @experimental in 5.3
*
* @author Grégoire Pineau <[email protected]>
* @author Jérémy Derussé <[email protected]>
*/
Expand Down
2 changes: 0 additions & 2 deletions src/Symfony/Component/Semaphore/PersistingStoreInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@
use Symfony\Component\Semaphore\Exception\SemaphoreReleasingException;

/**
* @experimental in 5.3
*
* @author Grégoire Pineau <[email protected]>
* @author Jérémy Derussé <[email protected]>
*/
Expand Down
5 changes: 0 additions & 5 deletions src/Symfony/Component/Semaphore/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,6 @@ The Semaphore Component manages
[semaphores](https://en.wikipedia.org/wiki/Semaphore_(programming)), a mechanism
to provide exclusive access to a shared resource.

**This Component is experimental**.
[Experimental features](https://symfony.com/doc/current/contributing/code/experimental.html)
are not covered by Symfony's
[Backward Compatibility Promise](https://symfony.com/doc/current/contributing/code/bc.html).

Resources
---------

Expand Down
2 changes: 0 additions & 2 deletions src/Symfony/Component/Semaphore/Semaphore.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@
/**
* Semaphore is the default implementation of the SemaphoreInterface.
*
* @experimental in 5.3
*
* @author Grégoire Pineau <[email protected]>
* @author Jérémy Derussé <[email protected]>
*/
Expand Down
2 changes: 0 additions & 2 deletions src/Symfony/Component/Semaphore/SemaphoreFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@
/**
* Factory provides method to create semaphores.
*
* @experimental in 5.3
*
* @author Grégoire Pineau <[email protected]>
* @author Jérémy Derussé <[email protected]>
* @author Hamza Amrouche <[email protected]>
Expand Down
2 changes: 0 additions & 2 deletions src/Symfony/Component/Semaphore/SemaphoreInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@
/**
* SemaphoreInterface defines an interface to manipulate the status of a semaphore.
*
* @experimental in 5.3
*
* @author Jérémy Derussé <[email protected]>
* @author Grégoire Pineau <[email protected]>
*/
Expand Down
2 changes: 0 additions & 2 deletions src/Symfony/Component/Semaphore/Store/RedisStore.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@
/**
* RedisStore is a PersistingStoreInterface implementation using Redis as store engine.
*
* @experimental in 5.3
*
* @author Grégoire Pineau <[email protected]>
* @author Jérémy Derussé <[email protected]>
*/
Expand Down
2 changes: 0 additions & 2 deletions src/Symfony/Component/Semaphore/Store/StoreFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@
/**
* StoreFactory create stores and connections.
*
* @experimental in 5.3
*
* @author Jérémy Derussé <[email protected]>
* @author Jérémy Derussé <[email protected]>
*/
Expand Down