Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ( ! ) Fatal error: Trait 'PHP7\Seo' not found in /var/www/php.xxx/PHP7/Page.php on line 10
- Page.php
- <?php
- namespace PHP7;
- use \PHP7\Seo as Seo;
- use \PHP7\Tag as Tag;
- // Класс страницы
- class Page
- {
- // Подключаем трейты
- use Seo, Tag;
- // заголовок
- protected $title;
- // содержимое
- protected $content;
- // Конструктор класса
- public function __construct($title = '', $content = '')
- {
- $this->title = $title;
- $this->content = $content;
- }
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment