On Thu, Jun 27, 2013 at 2:39 PM, Nikita Popov <nikita....@gmail.com> wrote:
> On Thu, Jun 27, 2013 at 1:33 PM, Arpad Ray <ar...@php.net> wrote: >> >> Creates a new SessionIdInterface and moves create_sid() into it, so >> existing >> handlers implementing SessionHandlerInterface don't require create_sid(). >> SessionHandler still includes the method so the default mod can be >> called, but >> now implements both interfaces. >> > > I'd appreciate some different name for this interface. "SessionID extends > SessionHandler" makes pretty little sense to me. > > Nikita > I'm not sure what you mean, usage looks like: class MyHandler extends SessionHandler (or) class MyHandler implements SessionHandlerInterface (or now) class MyHandler implements SessionHandlerInterface, SessionIdInterface