Re: [PHP-DEV] Whitespace around Paamayim Nekudotayim (double colon)

2021-02-15 Thread Rowan Tommins
On 15/02/2021 14:52, Matthew Brown wrote: The most comparable example is between namespace separators: Ns \ bar(); Ns \ SOME_CONST; are both syntax errors. As Sara says, this only became an error in 8.0, and there was a rather specific reason for it, but I think there is a philosophical

Re: [PHP-DEV] Whitespace around Paamayim Nekudotayim (double colon)

2021-02-15 Thread Matthew Brown
Thanks, now I realise I was probably wrong to bring this up. I had it in my mind that "::" could never appear chained together (thinking of constants), but it's just that I've never seen code that chains them together – i.e. this is valid: A::b()::c()::$d::$e = 5; On Mon, 15 Feb 2021 at 15:06,

Re: [PHP-DEV] Whitespace around Paamayim Nekudotayim (double colon)

2021-02-15 Thread Larry Garfield
On Mon, Feb 15, 2021, at 2:25 PM, Matthew Brown wrote: > Thanks, now I realise I was probably wrong to bring this up. > > I had it in my mind that "::" could never appear chained together (thinking > of constants), but it's just that I've never seen code that chains them > together – i.e. this is

Re: [PHP-DEV] Replies on lists.php.net

2021-02-15 Thread Larry Garfield
On Mon, Feb 15, 2021, at 6:55 AM, Pierre wrote: > Le 15/02/2021 à 13:32, Alexandru Pătrănescu a écrit : > > On Mon, Feb 15, 2021 at 2:20 PM Pierre wrote: > > > > I'm interested in this topic as most email clients that I know don't have > > such an option like "reply to list". > > > > Instructions

Re: [PHP-DEV] Whitespace around Paamayim Nekudotayim (double colon)

2021-02-15 Thread Matthew Brown
On Mon, 15 Feb 2021 at 11:05, Sara Golemon wrote: > That change was made very recently (8.0) and was done for technical > reasons (attributes) not aesthetic ones. > > Personally, I agree that adding whitespace around double colon is a > suspect move, but breaking valid code for the sake of one's

Re: [PHP-DEV] Whitespace around Paamayim Nekudotayim (double colon)

2021-02-15 Thread Matthew Brown
There are plenty of places where PHP doesn't allow whitespace currently. The most comparable example is between namespace separators: Ns \ bar(); Ns \ SOME_CONST; are both syntax errors. `MyClass::bar()` and `MyClass::SOME_CONST` are often used in place of `Ns\bar()` and `Ns\SOME_CONST`

Re: [PHP-DEV] Replies on lists.php.net

2021-02-15 Thread Pierre
Le 15/02/2021 à 13:20, Pierre a écrit : Hello, I noticed I receive almost all your replies to the list along with a duplicated copy addressed to me or other conversation participants, I think you always click "reply to all" instead of "reply to list" in your mail client. I'm not angry all

[PHP-DEV] Replies on lists.php.net

2021-02-15 Thread Pierre
Hello, I noticed I receive almost all your replies to the list along with a duplicated copy addressed to me or other conversation participants, I think you always click "reply to all" instead of "reply to list" in your mail client. I'm not angry all all, it happens a lot that I do the same

Re: [PHP-DEV] Replies on lists.php.net

2021-02-15 Thread Alexandru Pătrănescu
On Mon, Feb 15, 2021 at 2:20 PM Pierre wrote: > I think you always click "reply to all" instead of "reply to list" in your > mail client. > I'm interested in this topic as most email clients that I know don't have such an option like "reply to list". Instructions here clearly mention that

Re: [PHP-DEV] Replies on lists.php.net

2021-02-15 Thread Pierre
Le 15/02/2021 à 13:32, Alexandru Pătrănescu a écrit : On Mon, Feb 15, 2021 at 2:20 PM Pierre wrote: I'm interested in this topic as most email clients that I know don't have such an option like "reply to list". Instructions here clearly mention that reply to all should be used:

Re: [PHP-DEV] Whitespace around Paamayim Nekudotayim (double colon)

2021-02-15 Thread Sara Golemon
On Mon, Feb 15, 2021 at 8:53 AM Matthew Brown wrote: > > There are plenty of places where PHP doesn't allow whitespace currently. > > The most comparable example is between namespace separators: > > Ns \ bar(); > Ns \ SOME_CONST; > That change was made very recently (8.0) and was done for

Re: [PHP-DEV] [RFC] Fibers

2021-02-15 Thread Aaron Piotrowski
> On Feb 3, 2021, at 11:32 AM, Aaron Piotrowski wrote: > > >> On Jan 31, 2021, at 11:29 AM, Levi Morrison via internals >> wrote: >> >> I think it would probably be advantageous to have an observer that >> alerts interested parties when the fiber switches. This way we can >> avoid querying