Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:79472 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 54765 invoked from network); 8 Dec 2014 12:30:48 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 8 Dec 2014 12:30:48 -0000 Authentication-Results: pb1.pair.com smtp.mail=damz@damz.org; spf=pass; sender-id=pass Authentication-Results: pb1.pair.com header.from=damz@damz.org; sender-id=pass Received-SPF: pass (pb1.pair.com: domain damz.org designates 209.85.215.52 as permitted sender) X-PHP-List-Original-Sender: damz@damz.org X-Host-Fingerprint: 209.85.215.52 mail-la0-f52.google.com Received: from [209.85.215.52] ([209.85.215.52:55653] helo=mail-la0-f52.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id A3/00-54207-7F995845 for ; Mon, 08 Dec 2014 07:30:48 -0500 Received: by mail-la0-f52.google.com with SMTP id hs14so3797139lab.39 for ; Mon, 08 Dec 2014 04:30:44 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=damz.org; s=google; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=go+TlLaNlYGNGc2suUocHGv+6qMwGCoOCcz9vaZ7Ryo=; b=OFcc38DTQ7yrsfvS6CLXZk28xED6xE7zcsVhxxVliZI/ksWmRbcuUpErmVjaskNqLU VmaNAAwW5YHYsfvmwHRUf/RSmjzdI/f+SGjVWAJ3pgVmdt4SU+TKE3ffeZTCS5Ne/qra /VgKtiGpMsQkBs3O5ax4Ftdgp/hteQdI0tw0c= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc:content-type; bh=go+TlLaNlYGNGc2suUocHGv+6qMwGCoOCcz9vaZ7Ryo=; b=Bb9fjnP3mTwHBXR/oZMq9ipgY9Jyt8cU21bsjxvED95OUE5G6ve7oodlQ3lX1rBaWj +QSSCKM/EYbnQnisiVq8WcgfcZiULF1gCGJy5JcqCl/Atbp0XTrl0zOfdG6SsUz4c5Mp moPIftZ5BlMHozkmj65e5qWul1ETX9O/YbwNfxW21A9cWSM8W/jjWLfXhKsQdsOH4tPc t0u024w7Ecja+srhX6w5/4xEEbiICigYLTiVD9sFeiiiljPBxIFA4/Jf++8FGhvL2Y6e aoKbebxD5CgxHgw70XaG+dCvIa3tuCXJAhNOeP5pzP2IVqtU4HbUgt2aTPKQm3h7xccR WAbQ== X-Gm-Message-State: ALoCoQnuJ3RtNvHTbK1rTuWFY6dX/mEHGEWE5dFkUpmActdHSb7b723hyYemTR4AX5r7QFW+8Z92 MIME-Version: 1.0 X-Received: by 10.153.11.129 with SMTP id ei1mr16083164lad.11.1418041843962; Mon, 08 Dec 2014 04:30:43 -0800 (PST) Received: by 10.25.16.149 with HTTP; Mon, 8 Dec 2014 04:30:43 -0800 (PST) X-Originating-IP: [82.231.24.20] In-Reply-To: References: Date: Mon, 8 Dec 2014 13:30:43 +0100 Message-ID: To: "guilhermeblanco@gmail.com" Cc: PHP internals Content-Type: text/plain; charset=UTF-8 Subject: Re: [PHP-DEV] Zend language parser improvements From: damz@damz.org (Damien Tournoud) On Thu, Dec 4, 2014 at 1:46 AM, guilhermeblanco@gmail.com wrote: > Examples are COM, PDO Statement, DOM XML and MySQLi. > They also reduce the amount of checks of bison when parsing a php file, it > provides a nicer fatal error around multiple final and multiple abstract > mix between abstract and final instead of a generic parser error. PDO statement should not be made final, or this is a breaking language change (requiring an RFC and a 2/3 majority). Drupal 7 does extend PDOStatement without any problem. Damien