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' => '' . _('Sum') . '',
'needed' => '' . User_arrived_count() . '',
- 'given' => '' . (int)$uc . ''
+ 'given' => '' . (int)$shirtCount . ''
];
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);