Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:37360 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 79422 invoked from network); 30 Apr 2008 16:22:18 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 30 Apr 2008 16:22:18 -0000 Authentication-Results: pb1.pair.com header.from=chrisstocktonaz@gmail.com; sender-id=pass; domainkeys=bad Authentication-Results: pb1.pair.com smtp.mail=chrisstocktonaz@gmail.com; spf=pass; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.142.191 as permitted sender) DomainKey-Status: bad X-DomainKeys: Ecelerity dk_validate implementing draft-delany-domainkeys-base-01 X-PHP-List-Original-Sender: chrisstocktonaz@gmail.com X-Host-Fingerprint: 209.85.142.191 ti-out-0910.google.com Received: from [209.85.142.191] ([209.85.142.191:38596] helo=ti-out-0910.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 64/44-55591-7BC98184 for ; Wed, 30 Apr 2008 12:22:17 -0400 Received: by ti-out-0910.google.com with SMTP id u3so114249tia.17 for ; Wed, 30 Apr 2008 09:22:11 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:references; bh=9z+nbO7Ut8VR9CwyoSLTXaRGEMHgts/iMHjFzAs0DCc=; b=JJtzwmFo3uHS2pMGP9ZO6Cq+CP4miQzK2Zrjgtc5DcXutdaQDTwOMXQ3wqHG84dhnyhg2fUXuVdtJCo6tdThExtl9CrRWFQ73sSC0hQ9Uh4p/xJPzsZaY8FOKa3oYIx3yu+xm0/kpxUjr72xB6P94qwcfaZ+dDdCjmzXmnjfzQM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:references; b=XD+vkJsQZU1aULyQwHtXElapQlk90Wa5y6+v/O81puSiFLBKw7D4GAj1cUp1BVSOnXa8BmdJo0wTpuMT+ve9tdSbNNkotRMzQrdMs+alTd2TsdEF3NAtI6E2zUQeuZnpd/R9EPyzzIqNMDfDJkURsKsRGdZBjfb4r+kPrOndvC8= Received: by 10.151.150.13 with SMTP id c13mr1263270ybo.155.1209572527787; Wed, 30 Apr 2008 09:22:07 -0700 (PDT) Received: by 10.150.133.4 with HTTP; Wed, 30 Apr 2008 09:22:07 -0700 (PDT) Message-ID: Date: Wed, 30 Apr 2008 09:22:07 -0700 To: "Robert Cummings" Cc: "Nathan Nobbe" , RQuadling@googlemail.com, "John Carter -X (johncart - PolicyApp Ltd at Cisco)" , internals@lists.php.net In-Reply-To: <1209570941.6963.70.camel@blobule> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_1928_14883101.1209572527670" References: <48169695.9040803@omegavortex.net> <1209518549.7057.313.camel@blobule> <7dd2dc0b0804292051o4fd5e77eu6f8faecad93c378a@mail.gmail.com> <1209528338.7057.349.camel@blobule> <7dd2dc0b0804292127p484d8c7g9cf852f0a79a8dc6@mail.gmail.com> <1209532046.7057.368.camel@blobule> <7dd2dc0b0804292222h29c8845k456f6546cbdbece6@mail.gmail.com> <1209535288.7057.406.camel@blobule> <7dd2dc0b0804300839t49c5788dsf3e536d4eafb844f@mail.gmail.com> <1209570941.6963.70.camel@blobule> Subject: Re: [PHP-DEV] Class Properties in Interfaces? From: chrisstocktonaz@gmail.com ("Chris Stockton") ------=_Part_1928_14883101.1209572527670 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline If you guys don't like the way interfaces work then do not use them. If your going to talk about cycles, just lose the abstraction all together. Important for some. You once again, with all your hand flapping, assume > we want some kind of operation on the data. If we do not, and this > happens a lot, then we're just wasting cycles... and order of magnitude > more cycles. You speak of cycles, but I downloaded your framework that you created and grepped for get and set methods, and what did I find? Thinks like: function getId() { return $this->sessionId; } function setId( $newId ) { $this->sessionId = $newId; } function setNew( $status=true ) { $this->newSession = true; } function isNew() { return $this->newSession; } function &getDataStructure() { return $this->data; } This is wasting space in my mailbox, this conversation is pointless. I'm trying to read about thinks that are important like language changes. -Chris ------=_Part_1928_14883101.1209572527670--