spiral / app

Spiral Framework Skeleton HTTP Application: Queue, Console, Cycle ORM
https://spiral.dev/
MIT License
191 stars 20 forks source link

Fix psalm issues #115

Open drIceman opened 1 year ago

drIceman commented 1 year ago

Need to fix errors or add exclusions when executing vendor/bin/psalm I got such exclusions in psalm-baseline.xml

<?xml version="1.0" encoding="UTF-8"?>
<files>
    <file src="app/src/Domain/User/Entity/User.php">
        <PropertyNotSetInConstructor occurrences="1"/>
    </file>
    <file src="app/src/Endpoint/Console/CreateUserCommand.php">
        <PropertyNotSetInConstructor occurrences="2"/>
    </file>
    <file src="app/src/Endpoint/Console/DoNothing.php">
        <PropertyNotSetInConstructor occurrences="1"/>
    </file>
    <file src="app/src/Endpoint/Console/PingCommand.php">
        <PropertyNotSetInConstructor occurrences="1"/>
    </file>
    <file src="app/src/Infrastructure/Persistence/CycleORMUserRepository.php">
        <MissingTemplateParam occurrences="1"/>
        <MoreSpecificReturnType occurrences="1"/>
        <LessSpecificReturnStatement occurrences="1"/>
    </file>
</files>