'; print_r($obj); echo ''; } } namespace PHP8\classes { class Page { protected $title; protected $content; public function __construct(string $title = '', string $content = '') { $this->title = $title; $this->content = $content; } } }