Welcome! Log In Create A New Profile

Advanced

[PHP-DEV] Enforcing final in traits

Posted by Scott MacVicar 
Scott MacVicar
[PHP-DEV] Enforcing final in traits
May 04, 2012 08:40PM
This caused a few bugs for us / confusion. The final keyword is accepted inside a trait but it the class also defines a method without the final keyword this takes precedence.

Two solutions:
Enforce final when a trait defines - https://whisky.macvicar.net/patches/0001-If-a-trait-declares-a-method-as-final-enforce-that.patch

Prohibit final form being used in a trait - https://whisky.macvicar.net/patches/002-traits-Disable-use-of-final-keyword.patch

I'm for the first solution here

- S
--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php
Hannes Magnusson
Re: [PHP-DEV] Enforcing final in traits
May 04, 2012 09:50PM
On Fri, May 4, 2012 at 8:30 PM, Scott MacVicar <[email protected]> wrote:
> This caused a few bugs for us / confusion. The final keyword is accepted inside a trait but it the class also defines a method without the final keyword this takes precedence.
>

it also ignores visibility abstract and static..

I thought this was intentional?

-Hannes

--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php
Stefan Marr
Re: [PHP-DEV] Enforcing final in traits
May 05, 2012 01:40AM
On 04 May 2012, at 21:46, Hannes Magnusson wrote:

> On Fri, May 4, 2012 at 8:30 PM, Scott MacVicar <[email protected]> wrote:
>> This caused a few bugs for us / confusion. The final keyword is accepted inside a trait but it the class also defines a method without the final keyword this takes precedence.

The methods in the class always take precedency.

However, the final keyword might just be something I overlooked.
It sounds sensible that if the final is not explicitly removed during composition to treat it as what final was meant for and check it against the methods defined in the class body as well.

Scott, could you elaborate a bit of the use case of final in a trait?



> it also ignores visibility abstract and static..

abstract is not ignored.
An abstract method in a trait expresses a requirement to the host class (using class).

In general, the ppp visibilities are seen as hints for the standard usage of a trait, but can be changed during composition.



Thanks
Stefan



--
Stefan Marr
Software Languages Lab
Vrije Universiteit Brussel
Pleinlaan 2 / B-1050 Brussels / Belgium
http://soft.vub.ac.be/~smarr
Phone: +32 2 629 2974
Fax: +32 2 629 3525


--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php
Nikita Popov
Re: [PHP-DEV] Enforcing final in traits
May 05, 2012 11:30AM
On Sat, May 5, 2012 at 1:38 AM, Stefan Marr <[email protected]> wrote:
>
> On 04 May 2012, at 21:46, Hannes Magnusson wrote:
>
>> On Fri, May 4, 2012 at 8:30 PM, Scott MacVicar <[email protected]> wrote:
>>> This caused a few bugs for us / confusion. The final keyword is accepted inside a trait but it the class also defines a method without the final keyword this takes precedence.
>
> The methods in the class always take precedency.
>
> However, the final keyword might just be something I overlooked.
> It sounds sensible that if the final is not explicitly removed during composition to treat it as what final was meant for and check it against the methods defined in the class body as well.
>
> Scott, could you elaborate a bit of the use case of final in a trait?

Here is an example:
http://stackoverflow.com/questions/7104957/building-a-singleton-trait-with-php-5-4

Not the best things to use traits for, but probably something people
*will* try to do.

Nikita

--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php
Sorry, only registered users may post in this forum.

Click here to login