Files
php_8/namespace/PHP8/page.php

15 lines
229 B
PHP

<?php
namespace PHP8;
use \PHP8\Seo as Seo;
use \PHP8\Author as Author;
class Page
{
use Seo, Author;
public function __construct(
protected string $title = '',
protected string $content = ''
) {}
}