Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:66054 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 94352 invoked from network); 20 Feb 2013 11:26:30 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 20 Feb 2013 11:26:30 -0000 Authentication-Results: pb1.pair.com smtp.mail=php@golemon.com; spf=softfail; sender-id=softfail Authentication-Results: pb1.pair.com header.from=php@golemon.com; sender-id=softfail Received-SPF: softfail (pb1.pair.com: domain golemon.com does not designate 209.85.223.176 as permitted sender) X-PHP-List-Original-Sender: php@golemon.com X-Host-Fingerprint: 209.85.223.176 mail-ie0-f176.google.com Received: from [209.85.223.176] ([209.85.223.176:60277] helo=mail-ie0-f176.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 4A/7E-19387-5E2B4215 for ; Wed, 20 Feb 2013 06:26:29 -0500 Received: by mail-ie0-f176.google.com with SMTP id k13so9509474iea.7 for ; Wed, 20 Feb 2013 03:26:26 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:x-received:sender:x-originating-ip:in-reply-to :references:date:x-google-sender-auth:message-id:subject:from:to :content-type:x-gm-message-state; bh=pM7wiMrIchNIdPJlaPU/pSxMWdpTVfuFiXMSi3SV5p8=; b=foF3hg9aB2rFCgGW6APcAy5INMXfisBAtb8qh3BGYuk1t4sYgaEX2eMRAIBk5+Y3vL UIKx1GFEcMmQxT/okAYBI6l6dbBx8ftBoXBfpg/ZDQUyArFCw4h3Ml+vm5uCA5CY7+tY u6Bgwf11n+2FsgiO52dN3yAvYIB80lPKlHQwQm7rZ9OMoAND2P0ci+Zan/pc/1sK3s64 MV4v/IYW31+Mfe1xY5AIpf1Fy+CSMX4gEzJmauMRlEcV1r14taxPKYnCETFmd2xQv+oq gV/54zKIw51WUR4fPQRSQTuSEwO0AMCprB9aVEfqgvzQ1Zb7rlr6G2t+RRWLYQhaXNoZ Gg6g== MIME-Version: 1.0 X-Received: by 10.50.76.168 with SMTP id l8mr10832271igw.97.1361359586387; Wed, 20 Feb 2013 03:26:26 -0800 (PST) Sender: php@golemon.com Received: by 10.64.139.100 with HTTP; Wed, 20 Feb 2013 03:26:26 -0800 (PST) X-Originating-IP: [2001:470:1f09:2fa:3026:5ca2:41f3:8512] In-Reply-To: References: Date: Wed, 20 Feb 2013 03:26:26 -0800 X-Google-Sender-Auth: JiZDfF1HWoA1lja5PvXldKIooMk Message-ID: To: PHP internals Content-Type: text/plain; charset=ISO-8859-1 X-Gm-Message-State: ALoCoQl5eohjNQGFoEVjVCMR41ugWUIKfRJMwCVQwj42bFF1UIBvEAeAOD67ORdp+/aB8fREdGwM Subject: Re: [RFC] Allow trailing comma in function call argument lists From: pollita@php.net (Sara Golemon) On Tue, Feb 19, 2013 at 4:06 AM, Sara Golemon wrote: > Opening RFC to allow trailing comma in function call argument lists > > https://wiki.php.net/rfc/trailing-comma-function-args > For the record, I've updated the RFC just now to include function/method/closure declarations as well: function foo( $bar, $baz, ) { } Not a pattern I see as much, but for the sake of consistency, it doesn't hurt to put it on the table for discussion.