Skip to content
This repository has been archived by the owner on May 8, 2023. It is now read-only.

Commit

Permalink
mark final class
Browse files Browse the repository at this point in the history
  • Loading branch information
fezfez committed May 16, 2022
1 parent 51534f9 commit 09db980
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
10 changes: 8 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ test:
$(BASE) ./vendor/bin/phpunit $(COMMAND_ARGS)

infection: dup
$(BASE) phpdbg -qrr -d memory_limit=-1 ./vendor/bin/infection -j=5 $(COMMAND_ARGS)
$(BASE) ./vendor/bin/infection

# Analyse

Expand All @@ -61,4 +61,10 @@ cs:
$(BASE) php -d memory_limit=-1 ./vendor/bin/phpcs $(COMMAND_ARGS)

cbf: dup
$(BASE) php -d memory_limit=-1 ./vendor/bin/phpcbf $(COMMAND_ARGS)
$(BASE) php -d memory_limit=-1 ./vendor/bin/phpcbf $(COMMAND_ARGS)

is-valid:
$(BASE) ./vendor/bin/phpunit $(COMMAND_ARGS)
$(BASE) ./vendor/bin/infection
$(BASE) ./vendor/bin/psalm --show-info=true $(COMMAND_ARGS)
$(BASE) php -d memory_limit=-1 ./vendor/bin/phpcs $(COMMAND_ARGS)
2 changes: 1 addition & 1 deletion src/LeagueFilesystemAdapterV1.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

use function sprintf;

class LeagueFilesystemAdapterV1 implements BackupManagerFilesystemAdapter
final class LeagueFilesystemAdapterV1 implements BackupManagerFilesystemAdapter
{
private FilesystemInterface $fileSystem;

Expand Down

0 comments on commit 09db980

Please sign in to comment.