### Message Chain Example in PHP Source: https://refactoring.guru/smells/message-chains Illustrates a message chain where a series of method calls are chained together, creating dependencies between objects. This can lead to bloated code and tight coupling. ```PHP $a->b()->c()->d() ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.