Skip to content
This repository has been archived by the owner on Jul 17, 2024. It is now read-only.

Commit

Permalink
use final on PluginManager to avoid backwards compatibility breaks wi…
Browse files Browse the repository at this point in the history
…th psr/container
  • Loading branch information
marcelthole committed Jul 15, 2024
1 parent 0dbf005 commit e0ac25a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Symmetric/PaddingPluginManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* Padding\PaddingInterface. Additionally, it registers a number of default
* padding adapters available.
*/
class PaddingPluginManager implements ContainerInterface
final class PaddingPluginManager implements ContainerInterface
{
/** @var array<string, string> */
private $paddings = [
Expand Down
2 changes: 1 addition & 1 deletion src/SymmetricPluginManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* Symmetric\SymmetricInterface. Additionally, it registers a number of default
* symmetric adapters available.
*/
class SymmetricPluginManager implements ContainerInterface
final class SymmetricPluginManager implements ContainerInterface
{
/**
* Default set of symmetric adapters
Expand Down

0 comments on commit e0ac25a

Please sign in to comment.