From c6d4aa688ec68a729f2f473b155b24af0f443fa0 Mon Sep 17 00:00:00 2001
From: "Hahn Axel (hahn)" <axel.hahn@unibe.ch>
Date: Fri, 23 Aug 2024 09:36:06 +0200
Subject: [PATCH] format code

---
 public_html/deployment/classes/actionlog.class.php | 6 +++---
 public_html/deployment/classes/base.class.php      | 7 ++++---
 2 files changed, 7 insertions(+), 6 deletions(-)

diff --git a/public_html/deployment/classes/actionlog.class.php b/public_html/deployment/classes/actionlog.class.php
index 35568cfe..05d90696 100644
--- a/public_html/deployment/classes/actionlog.class.php
+++ b/public_html/deployment/classes/actionlog.class.php
@@ -296,7 +296,7 @@ class Actionlog
             $aForms["filter"]["form"]['selectproject'] = [
                 'type' => 'select',
                 'name' => 'selectproject',
-                'label' => $oHtml->getIcon('project') .'&nbsp;'. t('project'),
+                'label' => $oHtml->getIcon('project') . '&nbsp;' . t('project'),
                 'class' => 'span2',
                 'onchange' => 'updateActionlog();',
                 'inline' => true,
@@ -310,7 +310,7 @@ class Actionlog
             $aForms["filter"]["form"]['selectfrom'] = [
                 'type' => 'select',
                 'name' => 'selectWheretime',
-                'label' => $oHtml->getIcon('calendar') .'&nbsp;'. t("class-actionlog-time"),
+                'label' => $oHtml->getIcon('calendar') . '&nbsp;' . t("class-actionlog-time"),
                 'class' => 'span2',
                 'onchange' => 'updateActionlog();',
                 'options' => $aTimes,
@@ -319,7 +319,7 @@ class Actionlog
             $aForms["filter"]["form"]['selectlimit'] = [
                 'type' => 'select',
                 'name' => 'selectlimit',
-                'label' => $oHtml->getIcon('list') .'&nbsp;'. t("class-actionlog-count"),
+                'label' => $oHtml->getIcon('list') . '&nbsp;' . t("class-actionlog-count"),
                 'class' => 'span1',
                 'onchange' => 'updateActionlog();',
                 'options' => $aLimits,
diff --git a/public_html/deployment/classes/base.class.php b/public_html/deployment/classes/base.class.php
index 3539cacd..fdaa3789 100644
--- a/public_html/deployment/classes/base.class.php
+++ b/public_html/deployment/classes/base.class.php
@@ -7,14 +7,15 @@ require_once 'user.class.php';
  *
  * @author hahn
  */
-class base {
+class base
+{
 
     /**
      * logged in user as user object
      * @var user
      */
     public user $oUser;
-    
+
     /**
      * init user with optional given user
      * @param type $sUser
@@ -22,5 +23,5 @@ class base {
         $this->oUser=new user();
     }
      */
-    
+
 }
-- 
GitLab