<slide>
<title>PHP 8.5: First Class Callables in Constant Expressions</title>

<example><![CDATA[<?php
final class LogEntry
{
	public string $message;

	#[\Serialize\Custom(self::myMethod(...))]
	public string $severity;
}
?>]]></example>

<div effect="fade-in">
<list>
    <bullet>They must be free-standing functions or %static% methods</bullet>
    <bullet>*Forbidden:* %__callStatic()% methods</bullet>
	<bullet>*Forbidden:* %[ClassName::class, 'methodName'](...)%</bullet>
</list>
</div>

</slide>

