refactor: chrono objects
Signed-off-by: Sebastian Krupinski <krupinski01@gmail.com>
This commit is contained in:
@@ -7,9 +7,12 @@ declare(strict_types=1);
|
|||||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace KTXF\Chrono\Event;
|
namespace KTXF\Chrono\Entity;
|
||||||
|
|
||||||
use DateTimeInterface;
|
use DateTimeInterface;
|
||||||
|
use KTXF\Chrono\Entity\Property\EventCommonObject;
|
||||||
|
use KTXF\Chrono\Entity\Property\EventMutationCollection;
|
||||||
|
use KTXF\Chrono\Entity\Property\EventOccurrenceObject;
|
||||||
|
|
||||||
class EventObject extends EventCommonObject {
|
class EventObject extends EventCommonObject {
|
||||||
|
|
||||||
@@ -0,0 +1,34 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace KTXF\Chrono\Entity;
|
||||||
|
|
||||||
|
use DateTimeInterface;
|
||||||
|
use KTXF\Chrono\Entity\Property\AttachmentCollection;
|
||||||
|
use KTXF\Chrono\Entity\Property\JournalStatusTypes;
|
||||||
|
use KTXF\Chrono\Entity\Property\JournalVisibilityTypes;
|
||||||
|
use KTXF\Chrono\Entity\Property\TagCollection;
|
||||||
|
use KTXF\Json\JsonSerializableObject;
|
||||||
|
|
||||||
|
class JournalObject extends JsonSerializableObject {
|
||||||
|
public string $type = 'journal';
|
||||||
|
public int $version = 1;
|
||||||
|
public ?string $urid = null;
|
||||||
|
public ?DateTimeInterface $created = null;
|
||||||
|
public ?DateTimeInterface $modified = null;
|
||||||
|
public ?string $label = null;
|
||||||
|
public ?string $description = null;
|
||||||
|
public TagCollection $tags;
|
||||||
|
public ?string $content = null;
|
||||||
|
public ?DateTimeInterface $startsOn = null;
|
||||||
|
public ?DateTimeInterface $endsOn = null;
|
||||||
|
public ?JournalStatusTypes $status = null;
|
||||||
|
public ?JournalVisibilityTypes $visibility = null;
|
||||||
|
public AttachmentCollection $attachments;
|
||||||
|
|
||||||
|
public function __construct() {
|
||||||
|
$this->tags = new TagCollection();
|
||||||
|
$this->attachments = new AttachmentCollection();
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace KTXF\Chrono\Entity\Property;
|
||||||
|
|
||||||
|
use KTXF\Json\JsonSerializableCollection;
|
||||||
|
|
||||||
|
class AttachmentCollection extends JsonSerializableCollection {
|
||||||
|
public function __construct(array $data = []) {
|
||||||
|
parent::__construct($data, AttachmentObject::class, 'string');
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,14 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace KTXF\Chrono\Entity\Property;
|
||||||
|
|
||||||
|
use KTXF\Json\JsonSerializableObject;
|
||||||
|
|
||||||
|
class AttachmentObject extends JsonSerializableObject {
|
||||||
|
public ?string $uri = null;
|
||||||
|
public ?string $type = null;
|
||||||
|
public ?string $label = null;
|
||||||
|
public ?int $priority = null;
|
||||||
|
}
|
||||||
+1
-1
@@ -7,7 +7,7 @@ declare(strict_types=1);
|
|||||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace KTXF\Chrono\Event;
|
namespace KTXF\Chrono\Entity\Property;
|
||||||
|
|
||||||
enum EventAvailabilityTypes: string {
|
enum EventAvailabilityTypes: string {
|
||||||
case Free = 'free';
|
case Free = 'free';
|
||||||
+3
-3
@@ -7,7 +7,7 @@ declare(strict_types=1);
|
|||||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace KTXF\Chrono\Event;
|
namespace KTXF\Chrono\Entity\Property;
|
||||||
|
|
||||||
use DateInterval;
|
use DateInterval;
|
||||||
use DateTime;
|
use DateTime;
|
||||||
@@ -33,7 +33,7 @@ class EventCommonObject extends JsonSerializableObject {
|
|||||||
public EventSensitivityTypes|null $sensitivity = null;
|
public EventSensitivityTypes|null $sensitivity = null;
|
||||||
public int|null $priority = null;
|
public int|null $priority = null;
|
||||||
public string|null $color = null;
|
public string|null $color = null;
|
||||||
public EventTagCollection $tags;
|
public TagCollection $tags;
|
||||||
public EventOrganizerObject $organizer;
|
public EventOrganizerObject $organizer;
|
||||||
public EventParticipantCollection $participants;
|
public EventParticipantCollection $participants;
|
||||||
public EventNotificationCollection $notifications;
|
public EventNotificationCollection $notifications;
|
||||||
@@ -44,7 +44,7 @@ class EventCommonObject extends JsonSerializableObject {
|
|||||||
$this->locationsVirtual = new EventLocationVirtualCollection();
|
$this->locationsVirtual = new EventLocationVirtualCollection();
|
||||||
$this->notifications = new EventNotificationCollection();
|
$this->notifications = new EventNotificationCollection();
|
||||||
$this->organizer = new EventOrganizerObject();
|
$this->organizer = new EventOrganizerObject();
|
||||||
$this->tags = new EventTagCollection();
|
$this->tags = new TagCollection();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
+1
-1
@@ -7,7 +7,7 @@ declare(strict_types=1);
|
|||||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace KTXF\Chrono\Event;
|
namespace KTXF\Chrono\Entity\Property;
|
||||||
|
|
||||||
use KTXF\Json\JsonSerializableCollection;
|
use KTXF\Json\JsonSerializableCollection;
|
||||||
|
|
||||||
+1
-1
@@ -7,7 +7,7 @@ declare(strict_types=1);
|
|||||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace KTXF\Chrono\Event;
|
namespace KTXF\Chrono\Entity\Property;
|
||||||
|
|
||||||
use KTXF\Json\JsonSerializableObject;
|
use KTXF\Json\JsonSerializableObject;
|
||||||
|
|
||||||
+1
-1
@@ -7,7 +7,7 @@ declare(strict_types=1);
|
|||||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace KTXF\Chrono\Event;
|
namespace KTXF\Chrono\Entity\Property;
|
||||||
|
|
||||||
use KTXF\Json\JsonSerializableCollection;
|
use KTXF\Json\JsonSerializableCollection;
|
||||||
|
|
||||||
+1
-1
@@ -7,7 +7,7 @@ declare(strict_types=1);
|
|||||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace KTXF\Chrono\Event;
|
namespace KTXF\Chrono\Entity\Property;
|
||||||
|
|
||||||
use KTXF\Json\JsonSerializableObject;
|
use KTXF\Json\JsonSerializableObject;
|
||||||
|
|
||||||
+1
-1
@@ -7,7 +7,7 @@ declare(strict_types=1);
|
|||||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace KTXF\Chrono\Event;
|
namespace KTXF\Chrono\Entity\Property;
|
||||||
|
|
||||||
use KTXF\Json\JsonSerializableCollection;
|
use KTXF\Json\JsonSerializableCollection;
|
||||||
|
|
||||||
+1
-1
@@ -7,7 +7,7 @@ declare(strict_types=1);
|
|||||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace KTXF\Chrono\Event;
|
namespace KTXF\Chrono\Entity\Property;
|
||||||
|
|
||||||
use DateTime;
|
use DateTime;
|
||||||
use DateTimeImmutable;
|
use DateTimeImmutable;
|
||||||
+1
-1
@@ -7,7 +7,7 @@ declare(strict_types=1);
|
|||||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace KTXF\Chrono\Event;
|
namespace KTXF\Chrono\Entity\Property;
|
||||||
|
|
||||||
enum EventNotificationAnchorTypes: string {
|
enum EventNotificationAnchorTypes: string {
|
||||||
case Start = 'start';
|
case Start = 'start';
|
||||||
+1
-1
@@ -7,7 +7,7 @@ declare(strict_types=1);
|
|||||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace KTXF\Chrono\Event;
|
namespace KTXF\Chrono\Entity\Property;
|
||||||
|
|
||||||
use KTXF\Json\JsonSerializableCollection;
|
use KTXF\Json\JsonSerializableCollection;
|
||||||
|
|
||||||
+1
-1
@@ -7,7 +7,7 @@ declare(strict_types=1);
|
|||||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace KTXF\Chrono\Event;
|
namespace KTXF\Chrono\Entity\Property;
|
||||||
|
|
||||||
use DateInterval;
|
use DateInterval;
|
||||||
use DateTime;
|
use DateTime;
|
||||||
+1
-1
@@ -7,7 +7,7 @@ declare(strict_types=1);
|
|||||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace KTXF\Chrono\Event;
|
namespace KTXF\Chrono\Entity\Property;
|
||||||
|
|
||||||
enum EventNotificationPatterns: string {
|
enum EventNotificationPatterns: string {
|
||||||
case Absolute = 'absolute';
|
case Absolute = 'absolute';
|
||||||
+1
-1
@@ -7,7 +7,7 @@ declare(strict_types=1);
|
|||||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace KTXF\Chrono\Event;
|
namespace KTXF\Chrono\Entity\Property;
|
||||||
|
|
||||||
enum EventNotificationTypes: string {
|
enum EventNotificationTypes: string {
|
||||||
case Visual = 'visual';
|
case Visual = 'visual';
|
||||||
+1
-1
@@ -7,7 +7,7 @@ declare(strict_types=1);
|
|||||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace KTXF\Chrono\Event;
|
namespace KTXF\Chrono\Entity\Property;
|
||||||
|
|
||||||
use DateTime;
|
use DateTime;
|
||||||
use DateTimeImmutable;
|
use DateTimeImmutable;
|
||||||
+1
-1
@@ -7,7 +7,7 @@ declare(strict_types=1);
|
|||||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace KTXF\Chrono\Event;
|
namespace KTXF\Chrono\Entity\Property;
|
||||||
|
|
||||||
enum EventOccurrencePatternTypes: string {
|
enum EventOccurrencePatternTypes: string {
|
||||||
case Absolute = 'absolute';
|
case Absolute = 'absolute';
|
||||||
+1
-1
@@ -7,7 +7,7 @@ declare(strict_types=1);
|
|||||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace KTXF\Chrono\Event;
|
namespace KTXF\Chrono\Entity\Property;
|
||||||
|
|
||||||
enum EventOccurrencePrecisionTypes: string {
|
enum EventOccurrencePrecisionTypes: string {
|
||||||
case Yearly = 'yearly';
|
case Yearly = 'yearly';
|
||||||
+1
-1
@@ -7,7 +7,7 @@ declare(strict_types=1);
|
|||||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace KTXF\Chrono\Event;
|
namespace KTXF\Chrono\Entity\Property;
|
||||||
|
|
||||||
use KTXF\Json\JsonSerializableObject;
|
use KTXF\Json\JsonSerializableObject;
|
||||||
|
|
||||||
+1
-1
@@ -7,7 +7,7 @@ declare(strict_types=1);
|
|||||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace KTXF\Chrono\Event;
|
namespace KTXF\Chrono\Entity\Property;
|
||||||
|
|
||||||
use KTXF\Json\JsonSerializableCollection;
|
use KTXF\Json\JsonSerializableCollection;
|
||||||
|
|
||||||
+1
-1
@@ -7,7 +7,7 @@ declare(strict_types=1);
|
|||||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace KTXF\Chrono\Event;
|
namespace KTXF\Chrono\Entity\Property;
|
||||||
|
|
||||||
use KTXF\Json\JsonSerializableObject;
|
use KTXF\Json\JsonSerializableObject;
|
||||||
|
|
||||||
+1
-1
@@ -7,7 +7,7 @@ declare(strict_types=1);
|
|||||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace KTXF\Chrono\Event;
|
namespace KTXF\Chrono\Entity\Property;
|
||||||
|
|
||||||
enum EventParticipantRealm: string {
|
enum EventParticipantRealm: string {
|
||||||
case Internal = 'I';
|
case Internal = 'I';
|
||||||
+1
-1
@@ -7,7 +7,7 @@ declare(strict_types=1);
|
|||||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace KTXF\Chrono\Event;
|
namespace KTXF\Chrono\Entity\Property;
|
||||||
|
|
||||||
use KTXF\Json\JsonSerializableCollection;
|
use KTXF\Json\JsonSerializableCollection;
|
||||||
|
|
||||||
+1
-1
@@ -7,7 +7,7 @@ declare(strict_types=1);
|
|||||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace KTXF\Chrono\Event;
|
namespace KTXF\Chrono\Entity\Property;
|
||||||
|
|
||||||
enum EventParticipantRoleTypes: string {
|
enum EventParticipantRoleTypes: string {
|
||||||
case Owner = 'owner';
|
case Owner = 'owner';
|
||||||
+1
-1
@@ -7,7 +7,7 @@ declare(strict_types=1);
|
|||||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace KTXF\Chrono\Event;
|
namespace KTXF\Chrono\Entity\Property;
|
||||||
|
|
||||||
enum EventParticipantStatusTypes: string {
|
enum EventParticipantStatusTypes: string {
|
||||||
case None = 'none';
|
case None = 'none';
|
||||||
+1
-1
@@ -7,7 +7,7 @@ declare(strict_types=1);
|
|||||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace KTXF\Chrono\Event;
|
namespace KTXF\Chrono\Entity\Property;
|
||||||
|
|
||||||
enum EventParticipantTypes: string {
|
enum EventParticipantTypes: string {
|
||||||
case Unknown = 'unknown';
|
case Unknown = 'unknown';
|
||||||
+1
-1
@@ -7,7 +7,7 @@ declare(strict_types=1);
|
|||||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace KTXF\Chrono\Event;
|
namespace KTXF\Chrono\Entity\Property;
|
||||||
|
|
||||||
enum EventSensitivityTypes: string {
|
enum EventSensitivityTypes: string {
|
||||||
case Public = 'public';
|
case Public = 'public';
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace KTXF\Chrono\Entity\Property;
|
||||||
|
|
||||||
|
enum JournalStatusTypes: string {
|
||||||
|
case Draft = 'draft';
|
||||||
|
case Final = 'final';
|
||||||
|
case Cancelled = 'cancelled';
|
||||||
|
}
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace KTXF\Chrono\Entity\Property;
|
||||||
|
|
||||||
|
enum JournalVisibilityTypes: string {
|
||||||
|
case Public = 'public';
|
||||||
|
case Private = 'private';
|
||||||
|
case Confidential = 'confidential';
|
||||||
|
}
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace KTXF\Chrono\Entity\Property;
|
||||||
|
|
||||||
|
use KTXF\Json\JsonSerializableCollection;
|
||||||
|
|
||||||
|
class TagCollection extends JsonSerializableCollection {
|
||||||
|
public function __construct(array $data = []) {
|
||||||
|
parent::__construct($data, 'string');
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,18 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace KTXF\Chrono\Entity\Property;
|
||||||
|
|
||||||
|
use DateTimeInterface;
|
||||||
|
use KTXF\Json\JsonSerializableObject;
|
||||||
|
|
||||||
|
class TaskRecurrenceObject extends JsonSerializableObject {
|
||||||
|
public ?string $frequency = null;
|
||||||
|
public ?int $interval = null;
|
||||||
|
public ?int $count = null;
|
||||||
|
public ?DateTimeInterface $until = null;
|
||||||
|
public array $byDay = [];
|
||||||
|
public array $byMonthDay = [];
|
||||||
|
public array $byMonth = [];
|
||||||
|
}
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace KTXF\Chrono\Entity\Property;
|
||||||
|
|
||||||
|
enum TaskStatusTypes: string {
|
||||||
|
case NeedsAction = 'needs-action';
|
||||||
|
case InProcess = 'in-process';
|
||||||
|
case Completed = 'completed';
|
||||||
|
case Cancelled = 'cancelled';
|
||||||
|
}
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace KTXF\Chrono\Entity\Property;
|
||||||
|
|
||||||
|
use KTXF\Json\JsonSerializableCollection;
|
||||||
|
|
||||||
|
class TaskSubtaskCollection extends JsonSerializableCollection {
|
||||||
|
public function __construct(array $data = []) {
|
||||||
|
parent::__construct($data, TaskSubtaskObject::class, 'string');
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace KTXF\Chrono\Entity\Property;
|
||||||
|
|
||||||
|
use KTXF\Json\JsonSerializableObject;
|
||||||
|
|
||||||
|
class TaskSubtaskObject extends JsonSerializableObject {
|
||||||
|
public ?string $label = null;
|
||||||
|
public bool $completed = false;
|
||||||
|
public ?int $priority = null;
|
||||||
|
}
|
||||||
@@ -0,0 +1,41 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace KTXF\Chrono\Entity;
|
||||||
|
|
||||||
|
use DateTimeInterface;
|
||||||
|
use KTXF\Chrono\Entity\Property\AttachmentCollection;
|
||||||
|
use KTXF\Chrono\Entity\Property\TagCollection;
|
||||||
|
use KTXF\Chrono\Entity\Property\TaskRecurrenceObject;
|
||||||
|
use KTXF\Chrono\Entity\Property\TaskStatusTypes;
|
||||||
|
use KTXF\Chrono\Entity\Property\TaskSubtaskCollection;
|
||||||
|
use KTXF\Json\JsonSerializableObject;
|
||||||
|
|
||||||
|
class TaskObject extends JsonSerializableObject {
|
||||||
|
public string $type = 'task';
|
||||||
|
public int $version = 1;
|
||||||
|
public ?string $urid = null;
|
||||||
|
public ?DateTimeInterface $created = null;
|
||||||
|
public ?DateTimeInterface $modified = null;
|
||||||
|
public ?string $label = null;
|
||||||
|
public ?string $description = null;
|
||||||
|
public TagCollection $tags;
|
||||||
|
public ?DateTimeInterface $startsOn = null;
|
||||||
|
public ?DateTimeInterface $dueOn = null;
|
||||||
|
public ?DateTimeInterface $completedOn = null;
|
||||||
|
public ?TaskStatusTypes $status = null;
|
||||||
|
public ?int $priority = null;
|
||||||
|
public ?int $progress = null;
|
||||||
|
public ?string $color = null;
|
||||||
|
public ?TaskRecurrenceObject $recurrence = null;
|
||||||
|
public TaskSubtaskCollection $subtasks;
|
||||||
|
public AttachmentCollection $attachments;
|
||||||
|
public ?string $notes = null;
|
||||||
|
|
||||||
|
public function __construct() {
|
||||||
|
$this->tags = new TagCollection();
|
||||||
|
$this->subtasks = new TaskSubtaskCollection();
|
||||||
|
$this->attachments = new AttachmentCollection();
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* SPDX-FileCopyrightText: Sebastian Krupinski <krupinski01@gmail.com>
|
|
||||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
||||||
*/
|
|
||||||
|
|
||||||
namespace KTXF\Chrono\Event;
|
|
||||||
|
|
||||||
use KTXF\Json\JsonSerializableCollection;
|
|
||||||
|
|
||||||
class EventTagCollection extends JsonSerializableCollection {
|
|
||||||
|
|
||||||
public function __construct(array $data = []) {
|
|
||||||
parent::__construct($data, 'string');
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user