Date: 2018-02-04
* Author: Levi Morrison <levim@php.net>
* Status: Draft
* First Published at: http://wiki.php.net/rfc/php8/merge_member_symbol_tables
===== Introduction =====
Currently a class can have constants... s has ''$bar'' as both a property and a method:
<PHP>
class Foo {
const bar = 'constant';
publ
Date: 2015-05-16
* Author: Levi Morrison <levim@php.net>
* Status: Draft
* First Published at: http://wiki.php.net/rfc/php8/merge_symbol_tables
===== Introduction =====
Currently we have symbol tables separate fr... tant, function, and a class all simultaneously:
<PHP>
const Symbol = 'symbol';
function symbol() {}
cl