Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:33685 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 86099 invoked by uid 1010); 4 Dec 2007 19:57:04 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 86077 invoked from network); 4 Dec 2007 19:57:04 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 4 Dec 2007 19:57:04 -0000 Authentication-Results: pb1.pair.com header.from=chuck@horde.org; sender-id=pass Authentication-Results: pb1.pair.com smtp.mail=chuck@horde.org; spf=pass; sender-id=pass Received-SPF: pass (pb1.pair.com: domain horde.org designates 75.144.171.129 as permitted sender) X-PHP-List-Original-Sender: chuck@horde.org X-Host-Fingerprint: 75.144.171.129 unknown Received: from [75.144.171.129] ([75.144.171.129:48392] helo=technest.org) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 5B/36-47601-B01B5574 for ; Tue, 04 Dec 2007 14:57:03 -0500 Received: by technest.org (Postfix, from userid 33) id D91B57F021; Tue, 4 Dec 2007 14:56:55 -0500 (EST) Received: from ip65-47-144-166.z144-47-65.customer.algx.net (ip65-47-144-166.z144-47-65.customer.algx.net [65.47.144.166]) by technest.org (Horde Framework) with HTTP; Tue, 04 Dec 2007 14:56:55 -0500 Message-ID: <20071204145655.57566c7utnkjbr40@technest.org> Date: Tue, 04 Dec 2007 14:56:55 -0500 To: internals@lists.php.net References: <4731278C.8020301@chiaraquartet.net> <52dbac0f0712040809v64da917cic9aa803f9800f49b@mail.gmail.com> <475580D5.1010903@chiaraquartet.net> <52dbac0f0712040900o5dc80b26keca60ef841843fd1@mail.gmail.com> <47558C21.7040604@chiaraquartet.net> <52dbac0f0712041013p1fb023cag4f2ba8a2a067a099@mail.gmail.com> <4755A4F3.6020909@chiaraquartet.net> <52dbac0f0712041116h1101d2aub6aaebb3cd9689a2@mail.gmail.com> In-Reply-To: <52dbac0f0712041116h1101d2aub6aaebb3cd9689a2@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: 7bit User-Agent: Internet Messaging Program (IMP) H3 (4.2-cvs) Subject: Re: [PHP-DEV] ignored patches From: chuck@horde.org (Chuck Hagenbuch) Quoting Martin Alterisio : > Knowing that I'll have to strongly encourage the developers to dump that > patch. The namespace declaration shouldn't do more than what it's expected > to do. Why this: > > namespace yadayada; > import yadayada; > > Should work different that: > > import yadayada; > namespace yadayada; Why is this an issue for you? That second example is currently a parse error - the namespace declaration must be the first thing in the file, so the order is significant now. -chuck