mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-10 03:01:01 +00:00
15 lines
229 B
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 = ''
|
|
) {}
|
|
}
|