From dc1dd09eb265534e07650a1e219b59f9de128918 Mon Sep 17 00:00:00 2001
From: "Hahn Axel (hahn)" <axel.hahn@unibe.ch>
Date: Fri, 23 Aug 2024 10:10:27 +0200
Subject: [PATCH] update build.interface.php

---
 .../deployment/classes/build.interface.php        | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/public_html/deployment/classes/build.interface.php b/public_html/deployment/classes/build.interface.php
index 9c9abf36..f9c0e601 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;
+
 }
 
-- 
GitLab