<?php enum Method: string { case Get = 'GET'; case Post = 'POST'; case Put = 'PUT'; const Post2 = self::Post; } function test(Method $method) { var_dump($method); }; test(Method::Post2);
You have javascript disabled. You will not be able to edit any code.