php · PHP basics
What does the 'final' keyword do when applied to a class method in PHP?
Answers
- Makes the method static
- Prevents the method from being overridden in child classes
- Makes the method abstract
- Indicates the method is the last in the class