Re: [PHP-DEV] [RFC] Accessors v1.1 -> v1.2 Summary

2012-10-20 Thread Pierre Joye
On Sat, Oct 20, 2012 at 4:39 PM, Clint Priest wrote: > The problem was that the RFC had been updated past where the code was, AFAIK > you can't branch a wiki page, can you? That's what needed branching... > unless you mean to create a v1.1 page and a v1.2 page, which is basically > what I've d

RE: [PHP-DEV] [RFC] Accessors v1.1 -> v1.2 Summary

2012-10-20 Thread Clint Priest
gt; From: Pierre Joye [mailto:pierre@gmail.com] > Sent: Saturday, October 20, 2012 5:16 AM > To: Clint Priest > Cc: internals@lists.php.net > Subject: Re: [PHP-DEV] [RFC] Accessors v1.1 -> v1.2 Summary > > On Sat, Oct 20, 2012 at 1:06 AM, Clint Priest wrote: > > Hey every

Re: [PHP-DEV] [RFC] Accessors v1.1 -> v1.2 Summary

2012-10-20 Thread Pierre Joye
On Sat, Oct 20, 2012 at 1:06 AM, Clint Priest wrote: > Hey everyone, seems like the conversations have died down and I've attempted > to go back through all of the emails and produce a 1.1 -> 1.2 document which > summarizes what I believe are decided, being debated, issues, todos, etc. > > Pierr

Re: [PHP-DEV] [RFC] Accessors v1.1 -> v1.2 Summary

2012-10-20 Thread Amaury Bouchard
read-only / write-only keywords "no equivalent replacement has been suggested" => ouch read-only => const write-only => shouldn't exists. A write-only accessor is just a method disguised in property. It's not a good idea to allow: $obj->prop = 3; when the meaning is: $obj->meth(3); 20

[PHP-DEV] [RFC] Accessors v1.1 -> v1.2 Summary

2012-10-19 Thread Clint Priest
Hey everyone, seems like the conversations have died down and I've attempted to go back through all of the emails and produce a 1.1 -> 1.2 document which summarizes what I believe are decided, being debated, issues, todos, etc. Pierre had pointed out that I had partially changed the "as-implemen