← All results

Property-hook bodies on constructor-promoted properties

Group: Properties · Category: language · File: properties_promoted_property_hook_body.php

A set hook on a promoted property is still a function body: a type mismatch inside it should be reported the same way it would on a non-promoted hooked property. Mago 1.47 started analysing these bodies (carthage-software/mago#2218); before that the hook was skipped. References: - PHP language: constructor property promotion + property hooks - mago#2218

Analyzer results

AnalyzerVersionResultDiagnostics
phan 6.0.7Phan 6.0.7 php-ast version 1.1.3 PHP version used to run Phan: 8.5.9 Pass
properties_promoted_property_hook_body.php:33: Argument 1 ($value) is $value of type int but \Conformance\Tests\PropertiesPromotedPropertyHookBody\takesString() takes string defined at /Users/megurine/repo/php/php-typing-conformance/conformance/tests/properties_promoted_property_hook_body.php:20 [PhanTypeMismatchArgumentReal]
properties_promoted_property_hook_body.php:44: Argument 1 ($value) is $value of type int but \Conformance\Tests\PropertiesPromotedPropertyHookBody\takesString() takes string defined at /Users/megurine/repo/php/php-typing-conformance/conformance/tests/properties_promoted_property_hook_body.php:20 [PhanTypeMismatchArgumentReal]
phpstan 2.2.11PHPStan - PHP Static Analysis Tool 2.2.11 Pass reported Lv.5+
properties_promoted_property_hook_body.php:33: Parameter #1 $value of function Conformance\Tests\PropertiesPromotedPropertyHookBody\takesString expects string, int given. [reported-from-level=5]
properties_promoted_property_hook_body.php:44: Parameter #1 $value of function Conformance\Tests\PropertiesPromotedPropertyHookBody\takesString expects string, int given. [reported-from-level=5]
With strict-rules
properties_promoted_property_hook_body.php:33: Parameter #1 $value of function Conformance\Tests\PropertiesPromotedPropertyHookBody\takesString expects string, int given.
properties_promoted_property_hook_body.php:44: Parameter #1 $value of function Conformance\Tests\PropertiesPromotedPropertyHookBody\takesString expects string, int given.
psalm 6.16.1Psalm 6.16.1@f1f5de594dc76faf8784e02d3dc4716c91c6f6ac
next: 7.0.0-beta19
Fail

No diagnostics reported.

Expectation diff
Line 33: Expected 1 error(s)
Line 44: Expected 1 error(s)
mago 1.47.4mago 1.47.4 Pass
properties_promoted_property_hook_body.php:33: Invalid argument type for argument #1 of `Conformance\Tests\PropertiesPromotedPropertyHookBody\takesString`: expected `string`, but found `int`. [invalid-argument]
properties_promoted_property_hook_body.php:44: Invalid argument type for argument #1 of `Conformance\Tests\PropertiesPromotedPropertyHookBody\takesString`: expected `string`, but found `int`. [invalid-argument]
mir 0.72.1mir 0.72.1 Pass
properties_promoted_property_hook_body.php:33: InvalidArgument: Argument $value of takesString() expects 'string', got 'int' [MIR0201]
properties_promoted_property_hook_body.php:44: InvalidArgument: Argument $value of takesString() expects 'string', got 'int' [MIR0201]
phpantom 0.10.0phpantom_lsp 0.10.0 Pass
properties_promoted_property_hook_body.php:33: Argument 1 ($value) expects string, got int [type_mismatch_argument]
properties_promoted_property_hook_body.php:44: Argument 1 ($value) expects string, got int [type_mismatch_argument]
intelephense 1.18.5intelephense 1.18.5 Pass
properties_promoted_property_hook_body.php:33: Expected type 'string'. Found 'int'. [P1006]
properties_promoted_property_hook_body.php:44: Expected type 'string'. Found 'int'. [P1006]
phpactor 2026.07.22.0Phpactor 2026.07.22.0 Fail
properties_promoted_property_hook_body.php:32: Function "set" not found
properties_promoted_property_hook_body.php:54: Function "set" not found
Expectation diff
Line 33: Expected 1 error(s)
Line 44: Expected 1 error(s)
Line 32: Unexpected errors ["Function \"set\" not found"]
Line 54: Unexpected errors ["Function \"set\" not found"]
phpy 0.2.0phpy 0.2.0 Fail
properties_promoted_property_hook_body.php:44: Argument '1' passed to Conformance\Tests\PropertiesPromotedPropertyHookBody\takesString() is expected to be of type string, int given
Expectation diff
Line 33: Expected 1 error(s)
qodana 262.9437.196Qodana 262.9437.196 Pass
properties_promoted_property_hook_body.php:33: Parameter '$value' type is not compatible with declaration when using strict type matching [PhpParamsInspection]
properties_promoted_property_hook_body.php:33: Parameter '$value' type is not compatible with declaration [PhpStrictTypeCheckingInspection]
properties_promoted_property_hook_body.php:44: Parameter '$value' type is not compatible with declaration when using strict type matching [PhpParamsInspection]
properties_promoted_property_hook_body.php:44: Parameter '$value' type is not compatible with declaration [PhpStrictTypeCheckingInspection]
noverify 0.5.5NoVerify, version 0.5.5: built on: 2025.04.22 14:36:46 OS: r-kuchinskas arm64 Commit: 4774b82f8adc53fbef38f95e97af4b953b4d1529 Fail

No diagnostics reported.

Expectation diff
Line 33: Expected 1 error(s)
Line 44: Expected 1 error(s)
steins 0.1.6steins 0.1.6 (2026-08-25 revision c13b4c7) Fail

No diagnostics reported.

Expectation diff
Line 33: Expected 1 error(s)
Line 44: Expected 1 error(s)
phpstan-strict 2.2.11PHPStan - PHP Static Analysis Tool 2.2.11 Pass
properties_promoted_property_hook_body.php:33: Parameter #1 $value of function Conformance\Tests\PropertiesPromotedPropertyHookBody\takesString expects string, int given.
properties_promoted_property_hook_body.php:44: Parameter #1 $value of function Conformance\Tests\PropertiesPromotedPropertyHookBody\takesString expects string, int given.
psalm-next 7.0.0-beta19Psalm 7.0.0-beta19@7e751c06a756fa64dc4c759c09fe4a173afcb433 Fail

No diagnostics reported.

Expectation diff
Line 33: Expected 1 error(s)
Line 44: Expected 1 error(s)

Source

<?php

declare(strict_types=1);

namespace Conformance\Tests\PropertiesPromotedPropertyHookBody;

/**
 * Property-hook bodies on constructor-promoted properties.
 *
 * A set hook on a promoted property is still a function body: a type
 * mismatch inside it should be reported the same way it would on a
 * non-promoted hooked property. Mago 1.47 started analysing these bodies
 * (carthage-software/mago#2218); before that the hook was skipped.
 *
 * References:
 * - PHP language: constructor property promotion + property hooks
 * - https://github.com/carthage-software/mago/issues/2218
 */

function takesString(string $value): void
{
}

function takesInt(int $value): void
{
}

final class Promoted
{
    public function __construct(
        public int $value {
            set(int $value) {
                takesString($value); // E: int is not string
            }
        },
    ) {
    }
}

final class Regular
{
    public int $value = 0 {
        set(int $value) {
            takesString($value); // E: the same mismatch, not promotion-specific
            $this->value = $value;
        }
    }
}

final class PromotedOk
{
    public function __construct(
        public int $value {
            set(int $value) {
                takesInt($value); // V
            }
        },
    ) {
    }
}