This is an automated email from the ASF dual-hosted git repository.
sveneld pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/thrift.git
from c1710f06e THRIFT-5969: Enforce `gofmt -s` in CI
add 7302acb59 THRIFT-5759: Remove mbstring.func_overload workaround from
PHP library (#3445)
No new revisions were added by this update.
Summary of changes:
.github/workflows/build.yml | 4 +-
.github/workflows/sca.yml | 2 +-
build/docker/ubuntu-focal/Dockerfile | 1 -
build/docker/ubuntu-jammy/Dockerfile | 1 -
build/docker/ubuntu-noble/Dockerfile | 1 -
lib/php/Makefile.am | 8 -
lib/php/lib/Factory/TStringFuncFactory.php | 67 -------
lib/php/lib/Protocol/TBinaryProtocol.php | 3 +-
lib/php/lib/Protocol/TCompactProtocol.php | 7 +-
lib/php/lib/StringFunc/Core.php | 51 -----
lib/php/lib/StringFunc/Mbstring.php | 57 ------
lib/php/lib/StringFunc/TStringFunc.php | 40 ----
lib/php/lib/Transport/TBufferedTransport.php | 21 +-
lib/php/lib/Transport/TCurlClient.php | 7 +-
lib/php/lib/Transport/TFramedTransport.php | 27 ++-
lib/php/lib/Transport/THttpClient.php | 5 +-
lib/php/lib/Transport/TMemoryBuffer.php | 9 +-
lib/php/lib/Transport/TPhpStream.php | 7 +-
lib/php/lib/Transport/TSSLSocket.php | 1 -
lib/php/lib/Transport/TSocket.php | 11 +-
lib/php/lib/Transport/TTransport.php | 3 +-
lib/php/src/TStringUtils.php | 90 ---------
lib/php/src/Thrift.php | 1 -
.../Unit/Lib/Factory/TStringFuncFactoryTest.php | 72 -------
.../test/Unit/Lib/Protocol/StringByteCountTest.php | 124 ++++++++++++
lib/php/test/Unit/Lib/StringFunc/CoreTest.php | 212 ---------------------
lib/php/test/Unit/Lib/StringFunc/MbStringTest.php | 212 ---------------------
27 files changed, 171 insertions(+), 873 deletions(-)
delete mode 100644 lib/php/lib/Factory/TStringFuncFactory.php
delete mode 100644 lib/php/lib/StringFunc/Core.php
delete mode 100644 lib/php/lib/StringFunc/Mbstring.php
delete mode 100644 lib/php/lib/StringFunc/TStringFunc.php
delete mode 100644 lib/php/src/TStringUtils.php
delete mode 100644 lib/php/test/Unit/Lib/Factory/TStringFuncFactoryTest.php
create mode 100644 lib/php/test/Unit/Lib/Protocol/StringByteCountTest.php
delete mode 100644 lib/php/test/Unit/Lib/StringFunc/CoreTest.php
delete mode 100644 lib/php/test/Unit/Lib/StringFunc/MbStringTest.php