Set explicit visibility on class constants

This commit is contained in:
2024-06-11 22:15:59 +02:00
parent 8c8ead0a02
commit 25e5e954b4
40 changed files with 88 additions and 88 deletions

View File

@@ -11,14 +11,14 @@ declare(strict_types = 1);
*/
final class MDAppointmentStatusSet extends MDValueSet {
const STATUS = [
public const STATUS = [
'scheduled',
'cancelled',
'moved_online',
'postponed',
];
const STATUS_TO_SCHEMA_ORG = [
public const STATUS_TO_SCHEMA_ORG = [
'scheduled' => 'https://schema.org/EventScheduled',
'cancelled' => 'https://schema.org/EventCancelled',
'moved_online' => 'https://schema.org/EventMovedOnline',