Webmaster Forums - Website and SEO Help

Web Development and Design => Database, Server, Coding and Website Administration => Topic started by: Krina on June 27, 2018, 02:02:07 AM

Title: Can you extend a Final defined class in php?
Post by: Krina on June 27, 2018, 02:02:07 AM
Can you extend a Final defined class in php?
Title: Re: Can you extend a Final defined class in php?
Post by: 12Three on March 03, 2019, 11:17:50 PM
PHP 5 introduces the final keyword, which prevents child classes from overriding a method by prefixing the definition with final. If the class itself is being defined final then it cannot be extended. Note: Properties cannot be declared final, only classes and methods may be declared as final.