Created
October 31, 2022 07:05
-
-
Save rmcdaniel/3e3d542e3967d2933bbc0b22d189b791 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Workflows\ConvertVideo; | |
use Workflow\ActivityStub; | |
use Workflow\Workflow; | |
class ConvertVideoWorkflow extends Workflow | |
{ | |
public function execute() | |
{ | |
yield ActivityStub::make( | |
ConvertVideoWebmActivity::class, | |
storage_path('app/oceans.mp4'), | |
storage_path('app/oceans.webm'), | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment