diff --git a/Models/InstallModulePackage.php b/Models/InstallModulePackage.php new file mode 100644 index 0000000..e69de29 diff --git a/Models/UpdatePackage.php b/Models/UpdatePackage.php new file mode 100644 index 0000000..6a42a9d --- /dev/null +++ b/Models/UpdatePackage.php @@ -0,0 +1,45 @@ + + * @author Dennis Eichhorn + * @copyright Dennis Eichhorn + * @license OMS License 1.0 + * @version 1.0.0 + * @link http://orange-management.com + */ +declare(strict_types=1); +namespace Modules\Admin\Models; + +class UpdatePackage +{ + public function __construct(string $src, string $dest) + { + + } + + protected function unpack() + { + + } + + protected function validated() + { + + } + + private function validateSignature() + { + + } + + private function validateVersion() + { + + } +}