aboutsummaryrefslogtreecommitdiff
path: root/src/jobs/CreateFile.php
diff options
context:
space:
mode:
authorEvgeny Zinoviev <me@ch1p.io>2021-05-07 23:39:20 +0300
committerEvgeny Zinoviev <me@ch1p.io>2021-05-07 23:39:30 +0300
commit9a98ac50ff50dda2f2eed1ea825352c50c64440e (patch)
treecc5c7d36eee1ec934f8728e7f9104a9d2d760856 /src/jobs/CreateFile.php
initial
Diffstat (limited to 'src/jobs/CreateFile.php')
-rw-r--r--src/jobs/CreateFile.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/jobs/CreateFile.php b/src/jobs/CreateFile.php
new file mode 100644
index 0000000..439925f
--- /dev/null
+++ b/src/jobs/CreateFile.php
@@ -0,0 +1,15 @@
+<?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."'");
+ }
+
+}