This commit is contained in:
Simon Vieille 2015-03-02 21:22:57 +01:00
commit 9a7a9e3593
27 changed files with 4752 additions and 0 deletions

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