/
ser_vydy
/
practic-61
Обзор
Документация
Войти
/
ser_vydy
/
practic-61
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
Post.php
16 строк
266 B
ser_vydy
Lesson 1
30 мар 2026, 17:49
30 мар 2026, 17:49
f329b22
Код
Авторство
О чём код?
<?php class Post { public string $title; public string $content; public string $slug; public function __construct($title, $content, $slug) { $this->title = $title; $this->content = $content; $this->slug = $slug; } }