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