Skip to content
Snippets Groups Projects

php8 only; added variable types; short array syntax; remove glyphicons

Merged Hahn Axel (hahn) requested to merge 7359-update-php83 into master
1 file
+ 8
7
Compare changes
  • Side-by-side
  • Inline
@@ -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;
}
Loading