Skip to content

Commit 78df010

Browse files
committed
Make flysystem jobs not final
1 parent 037509c commit 78df010

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/batch-league-flysystem/src/CopyFilesJob.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
/**
1919
* This job allows you to copy files from one filesystem ot another.
2020
*/
21-
final class CopyFilesJob implements JobInterface
21+
class CopyFilesJob implements JobInterface
2222
{
2323
public function __construct(
2424
private JobParameterAccessorInterface $location,

src/batch-league-flysystem/src/MoveFilesJob.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
/**
2020
* This job allows you to move files from one filesystem ot another.
2121
*/
22-
final class MoveFilesJob implements JobInterface
22+
class MoveFilesJob implements JobInterface
2323
{
2424
public function __construct(
2525
private JobParameterAccessorInterface $location,

0 commit comments

Comments
 (0)