mirror of
https://github.com/php/php-src.git
synced 2024-11-30 21:35:36 +08:00
532c60cb92
RFC: https://wiki.php.net/rfc/internal_method_return_types Closses GH-6971
16 lines
235 B
PHP
16 lines
235 B
PHP
<?php
|
|
|
|
/** @generate-class-entries */
|
|
|
|
final class Attribute
|
|
{
|
|
public int $flags;
|
|
|
|
public function __construct(int $flags = Attribute::TARGET_ALL) {}
|
|
}
|
|
|
|
final class ReturnTypeWillChange
|
|
{
|
|
public function __construct() {}
|
|
}
|