Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:81466 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 75974 invoked from network); 31 Jan 2015 04:14:18 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 31 Jan 2015 04:14:18 -0000 Authentication-Results: pb1.pair.com smtp.mail=pjsturgeon@gmail.com; spf=pass; sender-id=pass Authentication-Results: pb1.pair.com header.from=pjsturgeon@gmail.com; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.215.42 as permitted sender) X-PHP-List-Original-Sender: pjsturgeon@gmail.com X-Host-Fingerprint: 209.85.215.42 mail-la0-f42.google.com Received: from [209.85.215.42] ([209.85.215.42:64381] helo=mail-la0-f42.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id BE/3D-34022-9965CC45 for ; Fri, 30 Jan 2015 23:14:18 -0500 Received: by mail-la0-f42.google.com with SMTP id ms9so26889493lab.1 for ; Fri, 30 Jan 2015 20:14:13 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=5Q5YCDFwRVmNJO/lrjxUv8xPrAObseXComBkHtM0pZ0=; b=i8Tlg4D5M9QJq73EstQpFFrfWM6VV0lxmwEIBGTB6tnk6LtkL/vCRysSEYBOUiRtKu 3UMrQeSxWof4Tz6/E8emHZEenXo6FHjfPBwi+ZQf6tPM+w4eIfqk7GYRV9rYmximapIM ob39LC7KbBd7VEIPsXa/L6f4yRfZDZLhWrwEVq7ne1SU26xwAdhJnFtlsho76K8r+dBq mpmcQX4WjkfHUeN3Ql8wZ1JmA9VUSRCORPf3gxhrC92SwpvgrJ1ITf7OVuitWPKpR2JL ZmYy1n1nrr8ghTUaH9qKWvfAIhV1O32tZzdU5IHwCkx2aN3GcCKnxaqdb0UEPJOBpHk3 jpUQ== MIME-Version: 1.0 X-Received: by 10.112.160.193 with SMTP id xm1mr9607850lbb.5.1422677653544; Fri, 30 Jan 2015 20:14:13 -0800 (PST) Received: by 10.114.60.204 with HTTP; Fri, 30 Jan 2015 20:14:13 -0800 (PST) Date: Fri, 30 Jan 2015 23:14:13 -0500 Message-ID: To: "internals@lists.php.net" Content-Type: text/plain; charset=UTF-8 Subject: [RFC][DISCUSSION] ReflectionParameter::getClassName() From: pjsturgeon@gmail.com (Philip Sturgeon) This RFC adds a new method to ReflectionParameter to allow easy access to a class name in a type hint, avoiding the need to actually load the class and use `get_class()` or `::class`. https://wiki.php.net/rfc/reflectionparameter-getclassname Cheers.