Current path: home/webdevt/cryptoimpot.fr/module/Application/src/Job/
?? Go up: /home/webdevt/cryptoimpot.fr/module/Application/src
<?php
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
namespace Application\Job;
use SlmQueue\Job\AbstractJob;
class TestJob extends AbstractJob
{
public function execute()
{
file_put_contents('/Users/jimmy/Sites/ledgio2/data/logjob.txt', 'job', FILE_APPEND | LOCK_EX);
echo 'Hello World';
}
}