Skip to content

Commit

Permalink
DeclarePdoMysql:: ATTR_SSL_VERIFY_SERVER_CERT only for Mysqlnd
Browse files Browse the repository at this point in the history
  • Loading branch information
kocsismate committed Jan 14, 2024
1 parent d84ed03 commit 9c7b391
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ext/pdo_mysql/pdo_mysql.stub.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,10 @@ class PdoMysql extends PDO

/** @cvalue PDO_MYSQL_ATTR_MULTI_STATEMENTS */
public const int ATTR_MULTI_STATEMENTS = UNKNOWN;

#ifdef PDO_USE_MYSQLND
/** @cvalue PDO_MYSQL_ATTR_SSL_VERIFY_SERVER_CERT */
public const int ATTR_SSL_VERIFY_SERVER_CERT = UNKNOWN;

#endif
#if MYSQL_VERSION_ID >= 80021 || defined(PDO_USE_MYSQLND)
/** @cvalue PDO_MYSQL_ATTR_LOCAL_INFILE_DIRECTORY */
public const int ATTR_LOCAL_INFILE_DIRECTORY = UNKNOWN;
Expand Down
4 changes: 3 additions & 1 deletion ext/pdo_mysql/pdo_mysql_arginfo.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 9c7b391

Please sign in to comment.