Skip to content
Snippets Groups Projects
Commit dc1dd09e authored by Hahn Axel (hahn)'s avatar Hahn Axel (hahn)
Browse files

update build.interface.php

parent e9a59028
No related branches found
No related tags found
1 merge request!66php8 only; added variable types; short array syntax; remove glyphicons
...@@ -4,20 +4,21 @@ ...@@ -4,20 +4,21 @@
* *
* @author hahn * @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 * if the plugin is able to work
* @return array * @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 * @return array
*/ */
public function getBuildCommands(); public function getBuildCommands(): array;
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment