/
uchi-pro
/
api-client-php
Обзор
Документация
Войти
/
uchi-pro
/
api-client-php
Код
Запросы
0
Пакеты
0
Релизы
3
Аналитика
2.2.0
src/Leads/Comment.php
32 строки
502 B
Andrey Gladyshev
feat: требовать версию PHP 7.3 и выше
18 июн 2021, 11:38
18 июн 2021, 11:38
fe6d3e9
Код
Авторство
О чём код?
<?php declare(strict_types=1); namespace UchiPro\Leads; class Comment { /** * @var string */ public $id; /** * @var string */ public $text; /** * @param string|null $id * @param string|null $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; } }