mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
24 lines
515 B
PHP
24 lines
515 B
PHP
<?php
|
|
|
|
/**
|
|
* @generate-class-entries static
|
|
* @undocumentable
|
|
*/
|
|
|
|
final class DoOperationNoCast {
|
|
private int $val;
|
|
public function __construct(int $val) {}
|
|
}
|
|
|
|
final class LongCastableNoOperations {
|
|
private int $val;
|
|
public function __construct(int $val) {}
|
|
}
|
|
final class FloatCastableNoOperations {
|
|
private float $val;
|
|
public function __construct(float $val) {}
|
|
}
|
|
final class NumericCastableNoOperations {
|
|
private int|float $val;
|
|
public function __construct(int|float $val) {}
|
|
}
|