A formal interface enforces type hints. A simple closure cannot be
enforced the same way.
--
Woody Gilk
http://about.me/shadowhand


On Mon, Aug 15, 2016 at 7:31 AM, Glenn Eggleton <geggl...@gmail.com> wrote:
> Naming things are hard if and only if their function is hard to define.... I
> still don't see any added value in turning the $next into a formal
> interface.
>
> Moving on from that:
>
> NextMiddlewareInterface might be okay for a name...
>
> NextMiddlewareInterface -> process ( Request )
>
>
> On Sunday, August 14, 2016 at 2:20:22 PM UTC-4, Woody Gilk wrote:
>>
>> On Sun, Aug 14, 2016 at 12:32 PM, Matthieu Napoli <matt...@mnapoli.fr>
>> wrote:
>> > so I wonder why we aren't using __invoke in that interface too
>> >
>> > That's a very good idea, it might be a good middle ground:
>> >
>> >
>> > interface Next
>> >
>> > {
>> >
>> >     public function __invoke(ServerRequestInterface $request) :
>> > ResponseInterface;
>> >
>> > }
>>
>> I'm comfortable with this approach. The type hint would still have to
>> be included, though:
>>
>> public function process(ServerRequestInterface $request, NextInterface
>> $next)
>> {
>>     return $next($request);
>> }
>>
>> I also don't love name NextInterface but... naming things is hard.
>> --
>> Woody Gilk
>> http://about.me/shadowhand
>>
>>
>>
>> >
>> > --
>> > You received this message because you are subscribed to the Google
>> > Groups
>> > "PHP Framework Interoperability Group" group.
>> > To unsubscribe from this group and stop receiving emails from it, send
>> > an
>> > email to php-fig+u...@googlegroups.com.
>> > To post to this group, send email to php...@googlegroups.com.
>> > To view this discussion on the web visit
>> >
>> > https://groups.google.com/d/msgid/php-fig/etPan.57b0ab4a.72d7b9d0.16394%40mnapoli.fr.
>> >
>> > For more options, visit https://groups.google.com/d/optout.
>
> --
> You received this message because you are subscribed to the Google Groups
> "PHP Framework Interoperability Group" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to php-fig+unsubscr...@googlegroups.com.
> To post to this group, send email to php-fig@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/php-fig/c025e5d9-991b-43b5-af97-3bb7df023870%40googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups "PHP 
Framework Interoperability Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to php-fig+unsubscr...@googlegroups.com.
To post to this group, send email to php-fig@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/php-fig/CAGOJM6JEgtYQoBC9Mprw4Mx4Yzz1%2B07F%3DZM73nOVZpecuq-tPw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to