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
1 change: 1 addition & 0 deletions PHPCompatibilitySymfonyPolyfillPHP81/ruleset.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

<rule ref="PHPCompatibility">
<!-- https://github.com/symfony/polyfill-php81/blob/1.x/bootstrap.php -->
<exclude name="PHPCompatibility.Constants.NewConstants.curlopt_issuercert_blobFound"/>
<exclude name="PHPCompatibility.Constants.NewConstants.mysqli_refresh_replicaFound"/>
<exclude name="PHPCompatibility.Constants.RemovedConstants.mysqli_refresh_replicaDeprecated"/>
<exclude name="PHPCompatibility.FunctionUse.NewFunctions.array_is_listFound"/>
Expand Down
1 change: 1 addition & 0 deletions PHPCompatibilitySymfonyPolyfillPHP82/ruleset.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

<rule ref="PHPCompatibility">
<!-- https://github.com/symfony/polyfill-php82/blob/1.x/bootstrap.php -->
<exclude name="PHPCompatibility.Constants.NewConstants.curlopt_ssh_host_public_key_sha256Found"/>
<exclude name="PHPCompatibility.FunctionUse.NewFunctions.odbc_connection_string_is_quotedFound"/>
<exclude name="PHPCompatibility.FunctionUse.NewFunctions.odbc_connection_string_should_quoteFound"/>
<exclude name="PHPCompatibility.FunctionUse.NewFunctions.odbc_connection_string_quoteFound"/>
Expand Down
2 changes: 2 additions & 0 deletions Test/SymfonyPolyfillPHP81Test.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,5 @@
class Foo extends ReturnTypeWillChange {}

$file = new CURLStringFile();

echo CURLOPT_ISSUERCERT_BLOB;
2 changes: 2 additions & 0 deletions Test/SymfonyPolyfillPHP82Test.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,5 @@ function hasSensitiveData(
string $password
) {}
*/

echo CURLOPT_SSH_HOST_PUBLIC_KEY_SHA256;
Loading