Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:100862 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 88913 invoked from network); 11 Oct 2017 11:48:37 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 11 Oct 2017 11:48:37 -0000 Authentication-Results: pb1.pair.com header.from=me@kelunik.com; sender-id=unknown Authentication-Results: pb1.pair.com smtp.mail=me@kelunik.com; spf=permerror; sender-id=unknown Received-SPF: error (pb1.pair.com: domain kelunik.com from 81.169.146.160 cause and error) X-PHP-List-Original-Sender: me@kelunik.com X-Host-Fingerprint: 81.169.146.160 mo4-p00-ob.smtp.rzone.de Received: from [81.169.146.160] ([81.169.146.160:20461] helo=mo4-p00-ob.smtp.rzone.de) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 97/AD-49033-3150ED95 for ; Wed, 11 Oct 2017 07:48:37 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; t=1507722512; s=domk; d=kelunik.com; h=Content-Type:Cc:To:Subject:Date:From:References:In-Reply-To: MIME-Version; bh=rsGlM39QOK/yqo4YCmJRa1uufeJt0GWfz0ij/9ZeSfg=; b=YuVFmVNhQNd0wM+m2rmrgC/mlDP6QFrTp6da/sN6BxRzzWROS46twZjl9M5AwHoA4i fn2hGW8eyxbAbgaACEcdftn5MKNron1GiU/o8jCsHqdNNzmwHYtm3C4kzDD09Vm6rTWS xlSZFGHlan1NySjWYk599PEz+twpb7eELvByw= X-RZG-AUTH: :IWkkfkWkbvHsXQGmRYmUo9mlsGbEv0XHBzMIJSS+jKTzde5mDb8AaBAcZiElcA== X-RZG-CLASS-ID: mo00 Received: by mail-qt0-f169.google.com with SMTP id 8so4217305qtv.1 for ; Wed, 11 Oct 2017 04:48:32 -0700 (PDT) X-Gm-Message-State: AMCzsaXTApl9HNEqG1WpfjOp9/5riUu7pkAzXYzV3Rhtev7CPpfWmWSw ORuiuuRjnK8Q3hj0N5sFUx8e5NCoQtfJvmKpXL8= X-Google-Smtp-Source: AOwi7QCLA0mfgZt+CkwmiKeKJj/MLvQUzYhrCvDkANMl1QVN4+shHPA+tTpKj9s8Ytr73Tz4bAGcdL1pP3u/6IJfun4= X-Received: by 10.37.98.148 with SMTP id w142mr4038464ybb.331.1507722512122; Wed, 11 Oct 2017 04:48:32 -0700 (PDT) MIME-Version: 1.0 Received: by 10.37.252.24 with HTTP; Wed, 11 Oct 2017 04:48:31 -0700 (PDT) In-Reply-To: References: <9a3f15dd-5dfc-144b-cc5f-66f689c33f53@php.net> Date: Wed, 11 Oct 2017 13:48:31 +0200 X-Gmail-Original-Message-ID: Message-ID: To: =?UTF-8?Q?Pedro_Magalh=C3=A3es?= Cc: Nikita Popov , PHP internals Content-Type: multipart/alternative; boundary="001a1142ed64c151f3055b4400e5" Subject: Re: [PHP-DEV] Strict type declarations not enforced for Reflection API invocation From: me@kelunik.com (Niklas Keller) --001a1142ed64c151f3055b4400e5 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable 2017-10-11 11:03 GMT+02:00 Pedro Magalh=C3=A3es : > On Tue, Oct 10, 2017 at 5:53 PM, Nikita Popov > wrote: > > > > The problem are not internal function calls, the problem are callbacks. > In > > fact, the proposed fix does not actually fix the problem you encountere= d > in > > PHPUnit, as it is going to use the strictness mode at the reflection > > call-site, not the strictness mode used by the file defining the data > > provider. > > > > For those that didn't have a look at the PR, my goal was to try to ensure > that if we are looking for which strictness to use, we should look at the > place of the closest "user" call instead of the function (user or interna= l) > that called the current one. The reason for this problem lies in the fact > that `ZEND_ARG_USES_STRICT_TYPES()` will simply look at the caller > regardless of what it is. Although this is enough to allow calling > functions that were defined as non-strict in a strict manner, it does cau= se > this kind of shortcomings with callbacks. > > > > I believe that the proper way to fix this is to handle dynamic function > > invocations differently from direct invocations. Direct invocations > should > > use the strictness level of the call-site, while dynamic invocations > should > > use the strictness level of the declaration-site. > I'm not sure about that. That might be reasonable for closures, but not for other dynamic invocations. > I agree that this should be about dynamic vs direct instead of user vs > internal but IMHO, making the strictness vary from call-site to > declaration-site depending on that may be a bit too confusing. Would it b= e > possible/reasonable to try to find the place where the dynamic call was > started? (i.e. the dataProvider, the mapped function for a userland > array_map, etc...) > I don't think that's reasonably possible. Think about some event emitter like that: ``` class EventEmitter { private array $callbacks =3D []; public function on(string $eventName, callable $callback): void { $this->callbacks[$eventName][] =3D $callback; } public function emit(string $eventName, $value): void { foreach ($this->callbacks[$eventName] ?? [] as $callback) { $callback($value); } } } ``` Where is a dynamic call to a registered callback started? Depending on the strictness level of the caller of `emit()`? What if that `emit()` is called from another file with another strictness level? Regards, Niklas --001a1142ed64c151f3055b4400e5--