diff --git a/public_html/deployment/classes/build.interface.php b/public_html/deployment/classes/build.interface.php index 9c9abf36cf15b5c69b65699c9d8829eaea719b4f..f9c0e6017076bbed54a2e7596ffebc36e0dfe054 100644 --- a/public_html/deployment/classes/build.interface.php +++ b/public_html/deployment/classes/build.interface.php @@ -4,20 +4,21 @@ * * @author hahn */ -interface iBuildplugin { - +interface iBuildplugin +{ + /** - * get an array of commands to check requirements + * Get an array of commands to check requirements * if the plugin is able to work * @return array */ - public function checkRequirements(); + public function checkRequirements(): array; /** - * get an array with shell commands to execute + * Get an array with shell commands to execute * @return array */ - public function getBuildCommands(); - + public function getBuildCommands(): array; + }