/
uchi-pro
/
api-client-php
Обзор
Документация
Войти
/
uchi-pro
/
api-client-php
Код
Запросы
0
Пакеты
0
Релизы
3
Аналитика
master
src/Courses/Tag.php
29 строк
481 B
Andrey Gladyshev
feat: перевести проект на php 8.2. убрать устаревшие методы
31 май 2024, 13:00
31 май 2024, 13:00
5826891
Код
Авторство
О чём код?
<?php declare(strict_types=1); namespace UchiPro\Courses; class Tag { public ?string $id = null; public ?bool $isActive = null; public ?string $parentId = null; public ?string $title = null; /** * @var Tag[] */ public array $children = []; public static function create(?string $id = null, ?string $title = null): self { $tag = new self(); $tag->id = $id; $tag->title = $title; return $tag; } }