Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:26252 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 90921 invoked by uid 1010); 25 Oct 2006 14:56:21 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 90906 invoked from network); 25 Oct 2006 14:56:21 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 25 Oct 2006 14:56:21 -0000 Authentication-Results: pb1.pair.com smtp.mail=cschneid@cschneid.com; spf=permerror; sender-id=unknown Authentication-Results: pb1.pair.com header.from=cschneid@cschneid.com; sender-id=unknown Received-SPF: error (pb1.pair.com: domain cschneid.com from 195.141.85.117 cause and error) X-PHP-List-Original-Sender: cschneid@cschneid.com X-Host-Fingerprint: 195.141.85.117 uf1.search.ch Linux 2.4/2.6 Received: from [195.141.85.117] ([195.141.85.117:58818] helo=smtp.rim.ch) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 7D/86-34241-11B7F354 for ; Wed, 25 Oct 2006 10:56:19 -0400 Received: from localhost (localhost [127.0.0.1]) by verksam.search.ch (Postfix) with ESMTP id DED953A81B7; Wed, 25 Oct 2006 16:56:14 +0200 (CEST) Received: from unknown by localhost (amavisd-new, unix socket) id client-XXOi44sh; Wed, 25 Oct 2006 16:56:14 +0200 (CEST) Received: by verksam.search.ch (Postfix, from userid 65534) id F1FE53A81DA; Wed, 25 Oct 2006 16:56:13 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on verksam.search.ch X-Spam-Level: X-Spam-Status: No, score=-2.3 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=3.1.0 Received: from [192.168.1.72] (ultrafilter-i [192.168.85.2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by verksam.search.ch (Postfix) with ESMTP id 4F8043A81B7; Wed, 25 Oct 2006 16:56:13 +0200 (CEST) Message-ID: <453F7B0C.2020809@cschneid.com> Date: Wed, 25 Oct 2006 16:56:12 +0200 User-Agent: Thunderbird 1.5.0.7 (X11/20060911) MIME-Version: 1.0 To: Marcus Boerger Cc: internals@lists.php.net References: <1485570655.20061023210857@marcus-boerger.de> In-Reply-To: <1485570655.20061023210857@marcus-boerger.de> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at search.ch Subject: Re: [RFC] E_DEPRECATED From: cschneid@cschneid.com (Christian Schneider) Marcus Boerger wrote: > - Add a new severity E_DEPRECATED Sounds like a good idea, +1 on the whole thing. > . E_STRICT any rule that reflects common strict standards, like OOP theory > that is considered harmless if not followed. For example the combination > 'abstract static' makes no sense in said theory but doesn't put our zend > engine in an unstable state. Another idea (I haven't seen skimming through the replies): Move use of undefined variable, property and index from E_NOTICE to E_STRICT as it is a coding style question some people use to find typos. Regards, - Chris