031e499819
API CI/CD / Validate (composer + pint) (push) Successful in 3m10s
API CI/CD / Test (PHPUnit) (push) Failing after 6m49s
API CI/CD / Build frontend assets (push) Successful in 1m3s
API CI/CD / Security audit (push) Failing after 1m0s
API CI/CD / Deploy to shared hosting (PHP) (push) Has been skipped
14 lines
281 B
PHP
14 lines
281 B
PHP
<?php
|
|
|
|
namespace App\Services\SchoolYears;
|
|
|
|
final class SelectedSchoolYearContext
|
|
{
|
|
public function __construct(
|
|
public readonly int $id,
|
|
public readonly string $name,
|
|
public readonly string $status,
|
|
public readonly bool $isReadOnly,
|
|
) {}
|
|
}
|