string should reject assignment of an int
at the write site, the same way a plain typed property would.
References:
- PHP language: property hooks
- PHPStan PHP 8.4 property hooks support| Analyzer | Version | Result | Diagnostics |
|---|---|---|---|
| phan | 6.0.7Phan 6.0.7 php-ast version 1.1.3 PHP version used to run Phan: 8.5.9 | Pass | properties_property_hooks.php:29: Assigning 1 of type int (value: 1) to property but \Conformance\Tests\PropertiesPropertyHooks\HookedName->name is string [PhanTypeMismatchPropertyReal] |
| phpstan | 2.2.8PHPStan - PHP Static Analysis Tool 2.2.8 | Pass reported Lv.3+ | properties_property_hooks.php:29: Property Conformance\Tests\PropertiesPropertyHooks\HookedName::$name (string) does not accept int. [identifier=assign.propertyType] [reported-from-level=3] With strict-rulesproperties_property_hooks.php:29: Property Conformance\Tests\PropertiesPropertyHooks\HookedName::$name (string) does not accept int. [identifier=assign.propertyType] |
| psalm | 6.16.1Psalm 6.16.1@f1f5de594dc76faf8784e02d3dc4716c91c6f6ac next: 7.0.0-beta19 |
Pass | properties_property_hooks.php:29: $object->name with declared type 'string' cannot be assigned type '1' [InvalidPropertyAssignmentValue] |
| mago | 1.46.0mago 1.46.0 | Pass | properties_property_hooks.php:29: Invalid type for property `$name`: expected `string`, but got `int(1)`. [invalid-property-assignment-value] |
| mir | 0.70.1mir 0.70.1 | Pass | properties_property_hooks.php:29: InvalidPropertyAssignment: Property $name expects 'string', cannot assign '1' [MIR0206] |
| phpantom | 0.9.0phpantom_lsp 0.9.0 | Pass | No diagnostics reported. |
| intelephense | 1.18.5intelephense 1.18.5 | Pass | properties_property_hooks.php:29: Expected type 'string'. Found 'int'. [P1006] |
| phpy | 0.2.0phpy 0.2.0 | Pass | properties_property_hooks.php:29: Cannot implicitly convert 'int' to 'string' |
| qodana | 262.8665.325Qodana 262.8665.325 | Pass | properties_property_hooks.php:29: Property must be of type 'string', 'int' provided [PhpStrictTypeCheckingInspection] |
| noverify | 0.5.5NoVerify, version 0.5.5: built on: 2025.04.22 14:36:46 OS: r-kuchinskas arm64 Commit: 4774b82f8adc53fbef38f95e97af4b953b4d1529 | Pass | No diagnostics reported. |
| steins | 0.1.5steins 0.1.5 (2026-08-12 revision 39b4cc1) | Pass | No diagnostics reported. |
| phpstan-strict | 2.2.8PHPStan - PHP Static Analysis Tool 2.2.8 | Pass | properties_property_hooks.php:29: Property Conformance\Tests\PropertiesPropertyHooks\HookedName::$name (string) does not accept int. [identifier=assign.propertyType] |
| psalm-next | 7.0.0-beta19Psalm 7.0.0-beta19@7e751c06a756fa64dc4c759c09fe4a173afcb433 | Pass | properties_property_hooks.php:29: $object->name with declared type 'string' cannot be assigned type '1' [InvalidPropertyAssignmentValue] |
<?php
declare(strict_types=1);
namespace Conformance\Tests\PropertiesPropertyHooks;
/**
* PHP 8.4+ property hooks: typed set side.
*
* A hooked property declared as `string` should reject assignment of an int
* at the write site, the same way a plain typed property would.
*
* References:
* - PHP language: property hooks
* - PHPStan PHP 8.4 property hooks support
*/
final class HookedName
{
public string $name = '' {
set(string $value) {
$this->name = $value;
}
}
}
$object = new HookedName();
$object->name = 'ok';
$object->name = 1; // E?: int is not accepted by hooked string property // E<phpstan>: int is not accepted by hooked string property // E<phpstan-strict>: int is not accepted by hooked string property // E<psalm>: int is not accepted by hooked string property // E<mago>: int is not accepted by hooked string property // E<mir>: int is not accepted by hooked string property // E<phan>: int is not accepted by hooked string property // E<intelephense>: int is not accepted by hooked string property