webcron/src/Command/RunCommand.php

15 lines
220 B
PHP
Raw Normal View History

2021-05-24 18:36:16 +02:00
<?php
namespace JeroenED\Webcron\Command;
use Symfony\Component\Console\Command\Command;
class RunCommand extends Command
{
protected static $defaultName = 'run';
protected function configure()
{
}
}