I'm on vacation so only at a high level:
- If it's anything remotely similar to the one for P++ (abrupt, done without
any coordination with the author, goes into a vote with immediate effect,
grossly misrepresents the idea while refusing to fix that even after the fact,
pretends to be an RFC ev
Morning,
I pretty much just echo what Sara said, I'm not sure what harm they are
doing ...
Cheers
Joe
On Mon, 19 Aug 2019 at 04:09, Sara Golemon wrote:
> On Sun, Aug 18, 2019 at 6:06 PM G. P. B. wrote:
>
> > It seems this topic already has been raised a year ago [1] but nothing
> has
> > been
Morning internals,
I've got a sort of fuzzy idea to make provisions in the RFC process for
preliminary polling.
It seems there are several situations where a preliminary poll makes sense,
it would have made sense for the p++ discussion and saved us a week of
wasted time. It also makes sense when
On Sun, Aug 18, 2019 at 6:06 PM G. P. B. wrote:
> It seems this topic already has been raised a year ago [1] but nothing has
> been done.
> So I would like to raise the issue again, there are a various of old and
> empty branches currently in git, would it be possible to remove them?
>
> 1/ Which
Hello internal,
It seems this topic already has been raised a year ago [1] but nothing has
been done.
So I would like to raise the issue again, there are a various of old and
empty branches currently in git, would it be possible to remove them?
Best regards
George P. Banyard
[1] https://externa
On 18 August 2019 11:14:52 BST, Nicolas Grekas wrote:
>Le dim. 18 août 2019 à 11:59, Benjamin Morel
>a
>écrit :
>
>> Hi Internals, I just noticed the following behaviour:
>>
>> class A {
>> public int $a;
>> public ?int $b;
>> public ?int $c = null;
>> }
>>
>>
Le dim. 18 août 2019 à 11:59, Benjamin Morel a
écrit :
> Hi Internals, I just noticed the following behaviour:
>
> class A {
> public int $a;
> public ?int $b;
> public ?int $c = null;
> }
>
> $a = new A;
>
> var_export(get_object_vars($a));
> var_expor
Hi Internals, I just noticed the following behaviour:
class A {
public int $a;
public ?int $b;
public ?int $c = null;
}
$a = new A;
var_export(get_object_vars($a));
var_export(get_class_vars('A'));
Result:
array (
'c' => NULL,
)