Skip to content

Commit

Permalink
Add final statement
Browse files Browse the repository at this point in the history
  • Loading branch information
bembelimen committed Apr 1, 2024
1 parent ba3c908 commit 4054b8b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion libraries/src/TUF/DatabaseStorage.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* @internal Currently this class is only used for Joomla! updates and will be extended in the future to support 3rd party updates
* Don't extend this class in your own code, it is subject to change without notice.
*/
class DatabaseStorage extends StorageBase
final class DatabaseStorage extends StorageBase
{
public const METADATA_COLUMNS = ['root', 'targets', 'snapshot', 'timestamp', 'mirrors'];

Expand Down
2 changes: 1 addition & 1 deletion libraries/src/TUF/HttpLoader.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* @internal Currently this class is only used for Joomla! updates and will be extended in the future to support 3rd party updates
* Don't extend this class in your own code, it is subject to change without notice.
*/
class HttpLoader implements LoaderInterface
final class HttpLoader implements LoaderInterface
{
public function __construct(private readonly string $repositoryPath, private readonly Http $http)
{
Expand Down
2 changes: 1 addition & 1 deletion libraries/src/TUF/TufFetcher.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
* @internal Currently this class is only used for Joomla! updates and will be extended in the future to support 3rd party updates
* Don't extend this class in your own code, it is subject to change without notice.
*/
class TufFetcher
final class TufFetcher
{
/**
* The table object holding the metadata
Expand Down
2 changes: 1 addition & 1 deletion libraries/src/Updater/Adapter/TufAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
* @internal Currently this class is only used for Joomla! updates and will be extended in the future to support 3rd party updates
* Don't extend this class in your own code, it is subject to change without notice.
*/
class TufAdapter extends UpdateAdapter
final class TufAdapter extends UpdateAdapter
{
/**
* Finds an update.
Expand Down
2 changes: 1 addition & 1 deletion libraries/src/Updater/ConstraintChecker.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* @internal Currently this class is only used for Joomla! updates and will be extended in the future to support 3rd party updates
* Don't extend this class in your own code, it is subject to change without notice.
*/
class ConstraintChecker
final class ConstraintChecker
{
/**
* This property holds information about failed environment constraints.
Expand Down

0 comments on commit 4054b8b

Please sign in to comment.