- Corrige l'erreur SQL 'Unknown column fk_operation in users' - L'opération active est récupérée depuis operations.chk_active = 1 - Jointure avec users pour filtrer par entité de l'admin créateur - Query: SELECT o.id FROM operations o INNER JOIN users u ON u.fk_entite = o.fk_entite WHERE u.id = ? AND o.chk_active = 1
26 lines
898 B
XML
Executable File
26 lines
898 B
XML
Executable File
<?xml version="1.0"?>
|
|
<psalm
|
|
errorLevel="1"
|
|
resolveFromConfigFile="true"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xmlns="https://getpsalm.org/schema/config"
|
|
xsi:schemaLocation="https://getpsalm.org/schema/config vendor/vimeo/psalm/config.xsd"
|
|
findUnusedBaselineEntry="true"
|
|
findUnusedCode="true"
|
|
phpVersion="8.2.0"
|
|
>
|
|
<!-- TODO: Update phpVersion when raising the minimum supported version -->
|
|
<projectFiles>
|
|
<directory name="src" />
|
|
<ignoreFiles>
|
|
<directory name="vendor" />
|
|
</ignoreFiles>
|
|
</projectFiles>
|
|
<issueHandlers>
|
|
<!-- Turn off dead code warnings for externally called functions -->
|
|
<PossiblyUnusedProperty errorLevel="suppress" />
|
|
<PossiblyUnusedMethod errorLevel="suppress" />
|
|
<PossiblyUnusedReturnValue errorLevel="suppress" />
|
|
</issueHandlers>
|
|
</psalm>
|