Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:124968 X-Original-To: internals@lists.php.net Delivered-To: internals@lists.php.net Received: from php-smtp4.php.net (php-smtp4.php.net [45.112.84.5]) by qa.php.net (Postfix) with ESMTPS id E9BAD1A00B7 for ; Fri, 16 Aug 2024 01:37:06 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=php.net; s=mail; t=1723772333; bh=ffMlAhfRO7fT+joIAeemry/FfNDI+Vb+RgVha9IVyWg=; h=Subject:From:To:Date:From; b=iirVQIhVqzQFwzGbfw7FsTeYvxicowbO4hbUW7lA9l0G9a2CWlcgzM57H/nMV/Amw SA0n4TQA6fNwQXDsc/Fb3m/J/wpFtwtQugHc1NVEcslNANH1/GdUNe4YGZH8iz+/Uq ZutEIP+W4IOl/bQxvIwQlnXDMVFIApt2JeIpjA2kQQcZ2g8r6Euoz0jCjcq59cfS39 /1VssAf/Y4qKQOMDtHwqgEui4JzkguEImwsDUzKT7R4Ku1WP1KPuASoLa1ZLd3rCLX yGCl08mrWLGDMAYNWmHbepBEwZKYr++0jzpyUg+WmuWhlxQuyESjsfD8syoUe4he5c tslGw458GLgHg== Received: from php-smtp4.php.net (localhost [127.0.0.1]) by php-smtp4.php.net (Postfix) with ESMTP id 086A9180055 for ; Fri, 16 Aug 2024 01:38:53 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 4.0.0 (2022-12-13) on php-smtp4.php.net X-Spam-Level: X-Spam-Status: No, score=0.6 required=5.0 tests=BAYES_50,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,DMARC_PASS,SPF_HELO_PASS, SPF_PASS autolearn=no autolearn_force=no version=4.0.0 X-Spam-Virus: No X-Envelope-From: Received: from ageofdream.com (ageofdream.com [45.33.21.21]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by php-smtp4.php.net (Postfix) with ESMTPS for ; Fri, 16 Aug 2024 01:38:52 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ageofdream.com; s=ageofdream; t=1723772224; bh=ffMlAhfRO7fT+joIAeemry/FfNDI+Vb+RgVha9IVyWg=; h=Subject:From:To:Date:From; b=Hw6mC2RlllFnDBTvNq0nBCuZ/G7pe0ObsAGcAg8Zl6ylEKDT54OUgK8mcZzPAMBSy dKOKSSZ/um0A7cAPXGfLLUcnA68trt3iSDAKNr47ECIcerBvQZDlh/78qZozMtfekj aE3R8k/xVhALWOpBH6xtcTB8E5LyaHHbP1eQ4uMwPOTwQpnBybpH2WZ4C+pDwvELl2 PwlGSppV3hZ9p2sbHDQHrTTxo/QxuHB/uUik1DLz+/lRI/3iSyNKwC9AL6EgwUeDtz cgP2jhi1nicFuXB613GnAIdfAzbO63ovFdXkbxSwFVu684ehrEwZciIHJcLxvXJOI9 p0s2cunrGc/Tw== Received: from [192.168.1.7] (unknown [72.255.193.122]) by ageofdream.com (Postfix) with ESMTPSA id A85402783D for ; Thu, 15 Aug 2024 21:37:04 -0400 (EDT) Message-ID: <34548342633f1d87b2fc77c643bd895a18f71b66.camel@ageofdream.com> Subject: [PHP-DEV] [DISCUSSION] Class Constant Enums? To: internals@lists.php.net Date: Thu, 15 Aug 2024 21:37:04 -0400 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable User-Agent: Evolution 3.46.4-2 Precedence: bulk list-help: list-post: List-Id: internals.lists.php.net x-ms-reactions: disallow MIME-Version: 1.0 From: lists@ageofdream.com (Nick Lockheart) Hi, Is there any interest in having enums as class constants? I'm often finding cases where I would like to have an enum inside of a class, but don't want a free-floating enum that's basically like another class. When dealing with state, it's nice to have a human readable const to represent that state, but I always feel like they should be grouped together. For example: class SSHClient { public const COMMAND_RESULT_SUCCESS =3D 0; public const COMMAND_RESULT_FAILURE =3D 1; public const COMMAND_RESULT_UNKNOWN =3D 2; public const COMMAND_RESULT_TIMEOUT =3D 3; // ... } These constants would make sense as an enum, but they make no sense outside of the SSHClient class that uses them. It seems that enums would be useful as class constants. There's a lot of cases where a class implements a state machine and needs statuses, but those status flags should be local to the class, not shared between classes. Example: class SSHClient { public const enum CommandResult { case Success; case Failure; case Unknown; case Timeout; } // ... } // Usage: SSHClient::CommandResult::Success