Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:107954 Return-Path: Delivered-To: mailing list internals@lists.php.net Received: (qmail 48694 invoked from network); 1 Jan 2020 22:26:54 -0000 Received: from unknown (HELO php-smtp4.php.net) (45.112.84.5) by pb1.pair.com with SMTP; 1 Jan 2020 22:26:54 -0000 Received: from php-smtp4.php.net (localhost [127.0.0.1]) by php-smtp4.php.net (Postfix) with ESMTP id AD66C18050B for ; Wed, 1 Jan 2020 12:30:36 -0800 (PST) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on php-smtp4.php.net X-Spam-Level: X-Spam-Status: No, score=-1.8 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,FREEMAIL_ENVFROM_END_DIGIT, FREEMAIL_FROM,HTML_MESSAGE,RCVD_IN_DNSWL_NONE,RCVD_IN_MSPIKE_H2, SPF_HELO_NONE,SPF_PASS autolearn=no autolearn_force=no version=3.4.2 X-Spam-ASN: AS15169 209.85.128.0/17 X-Spam-Virus: No X-Envelope-From: Received: from mail-io1-f43.google.com (mail-io1-f43.google.com [209.85.166.43]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by php-smtp4.php.net (Postfix) with ESMTPS for ; Wed, 1 Jan 2020 12:30:35 -0800 (PST) Received: by mail-io1-f43.google.com with SMTP id z8so36659316ioh.0 for ; Wed, 01 Jan 2020 12:30:35 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=aIuQm4RLIOEoB45nmaqNJAmDqWzIV+3Dx+/C5b80B9g=; b=CSfhc5jh2QWqj/lCqmYHyOVLGo1Kq3iXHHkLrPtkpAsHFxYsd7ey5zv+T0Ev4evsFI BCkXFsNsgFtSXW61Dk3dIcC2qOvP7QRrYmGc30t29fFq5XJsQyWzsMmrP+HoxQkEbmsm dOnbYhnjnkiCrbmv0tFPlbEGXaBRPYLbylkEFsq2eHG1mV2ReBajMAQP40nB5HHg12SX I9QKRQFL4E0HlftfApBYdg/QcQNrnhkwsBMv0zNOFSEUoV8xhV60DhofpAo47Sbusejx zZrizZhye63eCG9WOfK5vZH/kr5TyJy7Q49G33SrbP8jGldZdMKI8GZmlVPIBeblVS1H c6Ng== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=aIuQm4RLIOEoB45nmaqNJAmDqWzIV+3Dx+/C5b80B9g=; b=QSH8QD/NHJxz6/mJKVOD3SkCDTQ6Kw+CI6YHxi1a/9eC+krXAj997sDLOUVt6B7+l4 sTldRoOHpg/4UqyvF2TBVtG3FiGaDwhfSpm4XzT9fNWTtxZr/QbG7wzI2aOStMcYKimP m4tr2qIpcGveiKYAvno/IqRGdv+1LSq4j6tiwXKtyeSBubIUTXFlTHV7qutCtjbT1aiX 953D+1GzrrBO0lacwHfSncTSeV6sHVsLZYZLTNc5rAKbb/9WW4riDQP1ml/SgDwVUlU8 eLy5sbV9VWz9LNup8xUXUb7vCrhJcSFHcRe0DxhYNaeGKScVkSN/AEUy3DhqKUT6ueMP JiBA== X-Gm-Message-State: APjAAAWTi5jbAB1MWIsLZACF8OnzYk5B3fHW3mU+9t3GYBn/na1JBP2k 8fDhB+7IxOrBe/NbKV/J8r9R9Cfzx0pEGx4TEdY= X-Google-Smtp-Source: APXvYqx2ZxK66psbR9I9g2d1SvFoOJ0t+ESeEu5KZ7EaMt2ZEwIW5PzIoCkXKi9W+aP8PqtpWFTIZ6B3NAIhmJeUUHI= X-Received: by 2002:a02:5489:: with SMTP id t131mr61545461jaa.40.1577910633679; Wed, 01 Jan 2020 12:30:33 -0800 (PST) MIME-Version: 1.0 References: In-Reply-To: Date: Wed, 1 Jan 2020 21:30:23 +0100 Message-ID: To: tyson andre Cc: "internals@lists.php.net" Content-Type: multipart/alternative; boundary="000000000000ced134059b19f2f1" Subject: Re: [PHP-DEV] [RFC] "use global functions/consts" statement From: carusogabriel34@gmail.com (Gabriel Caruso) --000000000000ced134059b19f2f1 Content-Type: text/plain; charset="UTF-8" Hello Tyson, On Wed, 1 Jan 2020 at 20:31, tyson andre wrote: > Hi internals, > > This RFC proposes to support an opt-in "use global functions/consts;" > statement to disable PHP's check for the function/const in the current > namespace before falling back to the global namespace. > > https://wiki.php.net/rfc/use_global_elements > > Earlier discussion can be found in the 'Opt-in "use function *;" for > skipping check for function/const in alternate namespace' email thread, > which can be seen at https://externals.io/message/107877 > > Let me know if you have any comments on the RFC, e.g. > - Typical RFC feedback > - Missing parts, sections, or formatting issues in the RFC > - Choices of voting options > - Alternate syntax ideas ("use function *" was mentioned earlier, "use > global function" doesn't make sense to me because it's singular instead of > plural) > e.g. different directive names for the declare() voting option. > > Thanks, > - Tyson > -- > PHP Internals - PHP Runtime Development Mailing List > To unsubscribe, visit: http://www.php.net/unsub.php Do you have plans to use the https://github.com/php/php-rfcs to promote the discussion as well, the same way we did for the Typed Properties RFC? Best regards, --000000000000ced134059b19f2f1--