File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/batch-league-flysystem/src Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 18
18
/**
19
19
* This job allows you to copy files from one filesystem ot another.
20
20
*/
21
- final class CopyFilesJob implements JobInterface
21
+ class CopyFilesJob implements JobInterface
22
22
{
23
23
public function __construct (
24
24
private JobParameterAccessorInterface $ location ,
@@ -28,7 +28,7 @@ public function __construct(
28
28
) {
29
29
}
30
30
31
- public function execute (JobExecution $ jobExecution ): void
31
+ final public function execute (JobExecution $ jobExecution ): void
32
32
{
33
33
$ config = $ this ->location ->get ($ jobExecution );
34
34
if (\is_string ($ config )) {
Original file line number Diff line number Diff line change 19
19
/**
20
20
* This job allows you to move files from one filesystem ot another.
21
21
*/
22
- final class MoveFilesJob implements JobInterface
22
+ class MoveFilesJob implements JobInterface
23
23
{
24
24
public function __construct (
25
25
private JobParameterAccessorInterface $ location ,
@@ -29,7 +29,7 @@ public function __construct(
29
29
) {
30
30
}
31
31
32
- public function execute (JobExecution $ jobExecution ): void
32
+ final public function execute (JobExecution $ jobExecution ): void
33
33
{
34
34
$ config = $ this ->location ->get ($ jobExecution );
35
35
if (\is_string ($ config )) {
You can’t perform that action at this time.
0 commit comments