Skip to content

Instantly share code, notes, and snippets.

@rmcdaniel
Created October 31, 2022 07:05
Show Gist options
  • Save rmcdaniel/3e3d542e3967d2933bbc0b22d189b791 to your computer and use it in GitHub Desktop.
Save rmcdaniel/3e3d542e3967d2933bbc0b22d189b791 to your computer and use it in GitHub Desktop.
<?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