Initial import
This commit is contained in:
15
app/jobs/ProcessJob.php
Normal file
15
app/jobs/ProcessJob.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
class ProcessJob extends Job {
|
||||
|
||||
public $docid = 0;
|
||||
|
||||
public function __construct($docid) {
|
||||
parent::__construct("document:$docid");
|
||||
$this->docid = $docid;
|
||||
}
|
||||
|
||||
public function run() {
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user