for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Response;
class ActiveDirectoryUser {
public readonly string $username;
public readonly string $firstname;
public readonly string $lastname;
public readonly ?string $grade;
public readonly string $guid;
public function __construct(string $username, string $firstname, string $lastname, ?string $grade, string $guid) {
$this->username = $username;
username
App\Response\ActiveDirectoryUser
$this->firstname = $firstname;
firstname
$this->lastname = $lastname;
lastname
$this->grade = $grade;
grade
$this->guid = $guid;
guid
}