1. Go to this page and download the library: Download vikkio88/mashtru library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
vikkio88 / mashtru example snippets
Mashtru\JobManager;
use Mashtru\Libs\Helpers\DBConfig;
use Mashtru\Libs\Helpers\RunnerConfig;
$jobs = new JobManager(
new DBConfig(
'localhost',
'mashtru',
'root',
'root'
),
new RunnerConfig(
[
'App\Scripts\\'
]
)
);
$jobs->fire();
namespace App\Scripts;
use Mashtru\Libs\Interfaces\Job;
class DoSomeStuff implements Job
{
public function fire(array $parameters = [])
{
echo "I do some cron stuff!";
//SOME STUFF
//RETURN AN INT
return 0;
}
public function getName()
{
return 'DoSomeStuff';
}
}
hook.php
DosomeStuff.php
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.