for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
class PHP_Job
{
public function perform()
fwrite(STDOUT, 'Start job! -> ');
sleep(1);
fwrite(STDOUT, 'Job ended!' . PHP_EOL);
}