Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:92190 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 92790 invoked from network); 11 Apr 2016 11:17:40 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 11 Apr 2016 11:17:40 -0000 Authentication-Results: pb1.pair.com smtp.mail=quim@kalpe.com; spf=permerror; sender-id=unknown Authentication-Results: pb1.pair.com header.from=quim@kalpe.com; sender-id=unknown Received-SPF: error (pb1.pair.com: domain kalpe.com from 209.85.213.170 cause and error) X-PHP-List-Original-Sender: quim@kalpe.com X-Host-Fingerprint: 209.85.213.170 mail-ig0-f170.google.com Received: from [209.85.213.170] ([209.85.213.170:36957] helo=mail-ig0-f170.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id D9/B2-04135-2D78B075 for ; Mon, 11 Apr 2016 07:17:38 -0400 Received: by mail-ig0-f170.google.com with SMTP id g8so69701539igr.0 for ; Mon, 11 Apr 2016 04:17:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kalpe-com.20150623.gappssmtp.com; s=20150623; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=qPl0Y4Ru8oHH8McwZJEl6hUozjn2/jIkhTrJmCGt/A4=; b=qieLdJ4ukj2LD3ViAz06QpWfOAq2NMQ/Ue7/Y1312t9BJ0thFYl1DncljxijfpqiWy INzUKy708gDh4qeFblC7xW/cKPOPVaRFh/xf8/5HDciGtkEKtmPVlNERwqgtB47FrWwE +OoHsVJU9SH965FGlShC2vyzUmwEAZNuQ+nJT+53/huciORkZE6ZUlUuWhgCSmWsJQyJ Kkg1Qj7Uh94fJWHOodttFwNHoxh97Y5eCFyI4DRx14r62OHAzwd1vGhIgUfdxCACWcjv lFmBwkDjAwBv8d7h8H/l8ON2W2NpDoru6c9Z9FRLSYGpZTvYnVEyIS8hIDE+jXDH8aqh BpjA== 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:from:date :message-id:subject:to:cc; bh=qPl0Y4Ru8oHH8McwZJEl6hUozjn2/jIkhTrJmCGt/A4=; b=TRgn6SnfB2ICTc3qa1hLhtl8g4zOM2Q6hy/jj6WZdUG3Up9KTQy4loyVx7cMWGlJO3 vubJUAP7xfO4PVHLNM1xMl6u1gYkq9ASMAM9NRnQzvIhH0j52tilLrB5MYJipFwCeuFR gJzbcNtYNwWagFlmUeVec9yaDDRbQRRtSMM3RBiey+r84P5Xup6Fsz6aOqGSoDMe7G4g 9jSUWrcBYKOtJp/eCCfSdQoedPwp1Y0dyokqMuEFAGYohzZQLqdGkY7Nm350OkKHQtR6 4Ov/XLp3NkNjZo6XkMEvjUR4coZ2079kIOiGCuy0+qiQymbbt1ohjlh9l9zKEgbFnw26 C/ew== X-Gm-Message-State: AD7BkJK5W0ov1FkmVNJ4qemRsimsLSjfnGNeqi/QsHJVJ/tBOqWTEm+FShzroxRqAgga2qXRRyMtThoKp6o4/Q== X-Received: by 10.50.28.78 with SMTP id z14mr16626627igg.51.1460373455142; Mon, 11 Apr 2016 04:17:35 -0700 (PDT) MIME-Version: 1.0 Received: by 10.36.198.6 with HTTP; Mon, 11 Apr 2016 04:17:15 -0700 (PDT) In-Reply-To: References: <5708B197.9020108@php.net> <9C0BBB93-8173-45CF-9636-888B340828FD@ez.no> <57090928.3040905@php.net> Date: Mon, 11 Apr 2016 13:17:15 +0200 Message-ID: To: Niklas Keller Cc: Sebastian Bergmann , internals@lists.php.net Content-Type: multipart/alternative; boundary=089e0158acb608a0b7053033b150 Subject: Re: [PHP-DEV] Final properties From: quim@kalpe.com (Quim Calpe) --089e0158acb608a0b7053033b150 Content-Type: text/plain; charset=UTF-8 There is a concept in storage devices that fits: Write Once Read Many (WORM) https://en.wikipedia.org/wiki/Write_once_read_many final class Value { public worm $name; public function __construct(string $name) { $this->name = $name; } } I'm not aware of any programming language using this term so it's a bit awkward in that sense... On Sat, Apr 9, 2016 at 4:54 PM, Niklas Keller wrote: > Readonly is already used in the documentation for some things in the DOM > book. Writeonce sounds strange. > > Sebastian Bergmann schrieb am Sa., 9. Apr. 2016 15:52: > > > Am 09.04.2016 um 12:55 schrieb Niklas Keller: > > > Another possible choice would be "readonly". > > > > Rather "writeonce", no? > > > > > > -- > > PHP Internals - PHP Runtime Development Mailing List > > To unsubscribe, visit: http://www.php.net/unsub.php > > > > > --089e0158acb608a0b7053033b150--