summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormsquare <msquare@notrademark.de>2017-11-19 15:13:48 +0100
committermsquare <msquare@notrademark.de>2017-11-19 15:13:48 +0100
commit15c50ab3153a53fbb93dbb9266a1f369ba6393ad (patch)
tree8bf81b2f54f7a416f190f86a19d61404421a4520
parentdeae2a17217a0de9f8f016b85fea71a33c90d22c (diff)
fix minor cody style issues (codacy)
-rw-r--r--includes/pages/admin_active.php6
-rw-r--r--tests/Feature/Model/RoomModelTest.php6
2 files changed, 6 insertions, 6 deletions
diff --git a/includes/pages/admin_active.php b/includes/pages/admin_active.php
index d67af681..0612202f 100644
--- a/includes/pages/admin_active.php
+++ b/includes/pages/admin_active.php
@@ -252,13 +252,13 @@ function admin_active()
}
}
- $uc = DB::selectOne('SELECT count(*) FROM `User` WHERE `Tshirt`=1');
- $uc = array_shift($uc);
+ $shirtCount = DB::selectOne('SELECT count(*) FROM `User` WHERE `Tshirt`=1');
+ $shirtCount = array_shift($shirtCount);
$shirt_statistics[] = [
'size' => '<b>' . _('Sum') . '</b>',
'needed' => '<b>' . User_arrived_count() . '</b>',
- 'given' => '<b>' . (int)$uc . '</b>'
+ 'given' => '<b>' . (int)$shirtCount . '</b>'
];
return page_with_title(admin_active_title(), [
diff --git a/tests/Feature/Model/RoomModelTest.php b/tests/Feature/Model/RoomModelTest.php
index 3114ba2d..adf0218e 100644
--- a/tests/Feature/Model/RoomModelTest.php
+++ b/tests/Feature/Model/RoomModelTest.php
@@ -13,14 +13,14 @@ class RoomModelTest extends TestCase
require_once __DIR__ . '/../../../includes/engelsystem.php';
}
- public function create_Room()
+ public function createRoom()
{
$this->room_id = Room_create('test', false, true, '');
}
- public function test_Room()
+ public function testRoom()
{
- $this->create_Room();
+ $this->createRoom();
$room = Room($this->room_id);