Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.217.117
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
v3.cesa.co.za /
src /
UserBundle /
Model /
Delete
Unzip
Name
Size
Permission
Date
Action
CCEStudentReportLabel.php
891
B
-rw-r--r--
2026-05-26 06:59
Save
Rename
<?php namespace App\UserBundle\Model; /** * Minimal student identity for form reports (avoids loading full CCEStudent when schema lags entity mapping). */ final class CCEStudentReportLabel { private int $id; private ?string $knownAs; private ?string $firstName; private ?string $surname; public function __construct(int $id, ?string $knownAs, ?string $firstName, ?string $surname) { $this->id = $id; $this->knownAs = $knownAs; $this->firstName = $firstName; $this->surname = $surname; } public function getId(): int { return $this->id; } public function getKnownAs(): ?string { return $this->knownAs; } public function getFirstName(): ?string { return $this->firstName; } public function getSurname(): ?string { return $this->surname; } }