jobd-php-example/src/jobs/CreateFile.php
Evgeny Zinoviev 9a98ac50ff initial
2021-05-07 23:39:30 +03:00

16 lines
233 B
PHP

<?php
namespace jobs;
class CreateFile extends \Job
{
public function run()
{
$file = $this->input['file'];
if (!touch($file))
throw new \Exception("failed to touch file '".$file."'");
}
}