"Authors: David Smith\n"; } public Author $mainAuthor { get => new Author("Smith"); set => throw new Exception("Main author cannot be changed."); } } $book = new Book(); echo $book->credits; $author = $book->mainAuthor; echo $author->name;