Question: Assuming the `Horse` class exists, which is a valid example of inheritance in PHP?
- `class Pegasus extends Horse {}`
 - `class Alicorn imports Pegasus, Unicorn {}`
 - `class Unicorn implements Horse {}`
 - `class Horse inherits Unicorn {}`
 
Answer: The correct answer of the above question is Option A:`class Pegasus extends Horse {}`