cms-installer/lib/task/BasicTask.class.php
2015-03-02 21:22:57 +01:00

20 lines
343 B
PHP

<?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;
}
}