Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:87164 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 19901 invoked from network); 14 Jul 2015 09:05:40 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 14 Jul 2015 09:05:40 -0000 Authentication-Results: pb1.pair.com header.from=ua.san.alex@gmail.com; sender-id=pass Authentication-Results: pb1.pair.com smtp.mail=ua.san.alex@gmail.com; spf=pass; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.223.193 as permitted sender) X-PHP-List-Original-Sender: ua.san.alex@gmail.com X-Host-Fingerprint: 209.85.223.193 mail-ie0-f193.google.com Received: from [209.85.223.193] ([209.85.223.193:36008] helo=mail-ie0-f193.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 75/20-18450-3E0D4A55 for ; Tue, 14 Jul 2015 05:05:40 -0400 Received: by iectv2 with SMTP id tv2so546241iec.3 for ; Tue, 14 Jul 2015 02:05:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=syzT9zYWE0jj+NQmzAV2WxeA9++hDfbfDuW9Y1neg5k=; b=cpaoS4v7Epthc0qsDYtzZ2MFzBGhghDiE+mOOh3G7N1u6R/SrUyDLfTP09t/ADBEPz qEi/ILaje0LohtEnf41rmIC33h3kDUJ7jNsYZpUe4Z8b+9Ge4j72W9IHuUPv2nBVOosg ew8L/CNtKpK6DfyRb7LmMh1gyy4A0aTibgqAh+mOxoe1GOnKBDnYckFgmIkU3kqK1Z7V UsMvpA01oOkxm6Aa0U6RkcMfKFAYVzowF0G9O1HofazHUl5DMZgaD2qYz5UorE00kyy4 U25a4Z7CcSdweSKKQpbE0IBblEe5fYjlSmMepXD/XOTZ8i/FGDW52bpzh8UtAZ8aq1Gd tohg== MIME-Version: 1.0 X-Received: by 10.107.166.72 with SMTP id p69mr20514435ioe.65.1436864737363; Tue, 14 Jul 2015 02:05:37 -0700 (PDT) Received: by 10.50.246.20 with HTTP; Tue, 14 Jul 2015 02:05:37 -0700 (PDT) In-Reply-To: <035001d0bdbf$1d0a93a0$571fbae0$@php.net> References: <035001d0bdbf$1d0a93a0$571fbae0$@php.net> Date: Tue, 14 Jul 2015 12:05:37 +0300 Message-ID: To: francois@php.net Cc: Ryan Pallas , internals Content-Type: text/plain; charset=UTF-8 Subject: Re: [PHP-DEV] PHP7 and types From: ua.san.alex@gmail.com ("S.A.N") Maybe implement getter/setter as ECMAScript 6? class Person { get name ():string { return $this._name } set name (string $value) { $this._name = $value } }