chrisbryan17's picture
Upload folder using huggingface_hub
d2897cd verified
<?php
namespace Mautic\CoreBundle\Update\Step;
use Symfony\Component\Console\Helper\ProgressBar;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
interface StepInterface
{
public function getOrder(): int;
public function shouldExecuteInFinalStage(): bool;
public function execute(ProgressBar $progressBar, InputInterface $input, OutputInterface $output): void;
}