init
This commit is contained in:
commit
9a7a9e3593
27 changed files with 4752 additions and 0 deletions
19
lib/task/BasicTask.class.php
Normal file
19
lib/task/BasicTask.class.php
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
<?php
|
||||
|
||||
abstract class BasicTask {
|
||||
private $value;
|
||||
private $cmsInstallerApp;
|
||||
|
||||
public function __construct($value, CmsInstallerApp $app) {
|
||||
$this->value = $value;
|
||||
$this->cmsInstallerApp = $app;
|
||||
}
|
||||
|
||||
protected function getValue() {
|
||||
return $this->value;
|
||||
}
|
||||
|
||||
protected function getCmsInstallerApp() {
|
||||
return $this->cmsInstallerApp;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue