1
0
mirror of https://github.com/guzzle/guzzle.git synced 2025-03-14 19:29:49 +01:00

[7.0] Fix multiply defined functions fatal error (#2699)

* Fix multiply defined functions fatal error

* Prepare for release of 7.0.1
This commit is contained in:
Graham Campbell 2020-06-27 11:33:25 +01:00 committed by GitHub
parent 414c249610
commit 2d9d3c186a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View File

@ -4,6 +4,10 @@ Please refer to [UPGRADING](UPGRADING.md) guide for upgrading to a major version
## UNRELEASED
## 7.0.1 - 2020-06-27
* Fix multiply defined functions fatal error [#2699](https://github.com/guzzle/guzzle/pull/2699)
## 7.0.0 - 2020-06-27
No changes since 7.0.0-rc1.

View File

@ -1,6 +1,6 @@
<?php
// Don't redefine the functions if included multiple times.
if (!\function_exists('GuzzleHttp\_current_time')) {
if (!\function_exists('GuzzleHttp\describe_type')) {
require __DIR__ . '/functions.php';
}