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,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();
}