[PHP-DEV] Re: [RFC Proposal] Null Coalesce Equal Operator

2016-03-24 Thread Mutlu Kocak
thank you so much. I updated the name. On Thursday, 24 March 2016, Andrea Faulds wrote: > Hi Midori, > > Midori Kocak wrote: > >> Hi, >> >> I changed the name but I really don’ know how to change the url :) >> >> Midori >> >> > I don't think you can change the URL. In the past I've seen people c

Re: [PHP-DEV] Add spaceship assignment operator

2016-03-24 Thread Mutlu Kocak
he is trolling :) On Thursday, 24 March 2016, Nikita Popov wrote: > On Thu, Mar 24, 2016 at 8:05 PM, Sara Golemon > wrote: > > > On Thu, Mar 24, 2016 at 11:50 AM, Colin O'Dell > > > wrote: > > > Would your proposal also allow ! to work? > > > > > I think you means !===, which is "not-ident

Re: [PHP-DEV] [VOTE] var deprecation

2016-03-24 Thread Mutlu Kocak
+1 var should be deprecated On Thursday, 24 March 2016, Colin O'Dell wrote: > There have been some last-minute concerns raised about var being reserved > "for future usage". My intent was that var couldn't be used for > function/class names IN CASE it was re-used in the future, but not > encour

Re: [PHP-DEV] Add spaceship assignment operator

2016-03-24 Thread Mutlu Kocak
+1 On Thursday, 24 March 2016, Nikita Popov wrote: > Hi internals! > > For consistency, we should add a spaceship assignment operator: > > $a <=>= $b; > // same as > $a = ($a <=> $b); > > Additionally, we should add an is-identical assignment operator: > > $a $b; > // sa