Skip to content

UnusedConstructor

--find-dead-codeがオンになっていて、Psalmが特定のプライベートコンストラクタまたは関数の使用を見つけられない場合に発生します。

<?php
class A {
    private function __construct() {}
    public static function createInstance() : void {}
}
A::createInstance();

ユーザーノート