aboutsummaryrefslogtreecommitdiff
path: root/src/jobs/Hello.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/jobs/Hello.php')
-rw-r--r--src/jobs/Hello.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/jobs/Hello.php b/src/jobs/Hello.php
new file mode 100644
index 0000000..4fa2446
--- /dev/null
+++ b/src/jobs/Hello.php
@@ -0,0 +1,15 @@
+<?php
+
+namespace jobs;
+
+class Hello extends \Job
+{
+
+ public function run()
+ {
+ $greetings = "Hello, ".($this->input['name'] ?? 'noname').".\n";
+ $greetings .= "I'm writing you from ".__METHOD__.", my PID is ".getmypid()." and I'm executing job #".$this->id.".";
+ echo jsonEncode(['response' => $greetings]);
+ }
+
+}