Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/unstable/Config/IUserConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@ interface IUserConfig {
* @deprecated 32.0.0 use \OCP\Config\IUserConfig
* @see \OCP\Config\IUserConfig
*/
public const FLAG_SENSITIVE = 1; // value is sensitive
public const int FLAG_SENSITIVE = 1; // value is sensitive
/**
* @experimental 31.0.0
* @deprecated 32.0.0 use \OCP\Config\IUserConfig
* @see \OCP\Config\IUserConfig
*/
public const FLAG_INDEXED = 2; // value should be indexed
public const int FLAG_INDEXED = 2; // value should be indexed

/**
* Get list of all userIds with config stored in database.
Expand Down
2 changes: 1 addition & 1 deletion psalm-ncu.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
xsi:schemaLocation="https://getpsalm.org/schema/config vendor-bin/psalm/vendor/vimeo/psalm/config.xsd"
findUnusedBaselineEntry="false"
findUnusedCode="false"
phpVersion="8.2"
phpVersion="8.3"
>
<plugins>
<plugin filename="build/psalm/NcuExperimentalChecker.php"/>
Expand Down
1 change: 1 addition & 0 deletions psalm-ocp.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
findUnusedBaselineEntry="false"
findUnusedCode="false"
strictBinaryOperands="false"
phpVersion="8.3"
>
<plugins>
<plugin filename="build/psalm/AppFrameworkTainter.php" />
Expand Down
2 changes: 1 addition & 1 deletion psalm-strict.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
findUnusedCode="false"
findUnusedPsalmSuppress="true"
findUnusedVariablesAndParams="true"
phpVersion="8.2"
phpVersion="8.3"
>
<plugins>
<pluginClass class="Psalm\PhpUnitPlugin\Plugin"/>
Expand Down
2 changes: 1 addition & 1 deletion psalm.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
findUnusedCode="false"
findUnusedIssueHandlerSuppression="false"
strictBinaryOperands="false"
phpVersion="8.2"
phpVersion="8.3"
>
<plugins>
<plugin filename="build/psalm/AppFrameworkTainter.php" />
Expand Down
Loading