init
This commit is contained in:
commit
9a7a9e3593
27 changed files with 4752 additions and 0 deletions
13
lib/task/installationTask/BasicInstallationTask.class.php
Normal file
13
lib/task/installationTask/BasicInstallationTask.class.php
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
<?php
|
||||
|
||||
abstract class BasicInstallationTask {
|
||||
protected $destination;
|
||||
protected $version;
|
||||
|
||||
public function __construct($destination, $version) {
|
||||
$this->destination = getcwd().DIRECTORY_SEPARATOR.$destination;
|
||||
$this->version = $version;
|
||||
}
|
||||
|
||||
abstract public function execute();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue