Skip to content

Commit 5bcf852

Browse files
committed
Add PHP 8.5 to CircleCI matrix
1 parent 3f7e9b8 commit 5bcf852

2 files changed

Lines changed: 2 additions & 12 deletions

File tree

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ orbs:
44
ci: bigcommerce/internal@volatile
55
php: bigcommerce/internal-php@volatile
66

7-
define: &php_min "8.1"
7+
define: &php_min "8.2"
88

99
jobs_default: &jobs_default
1010
e:
1111
name: php/php
1212
php-version: << matrix.php-version >>
1313
matrix:
1414
parameters:
15-
php-version: [ *php_min, "8.2", "8.3" , "8.4" ]
15+
php-version: [ *php_min, "8.3", "8.4", "8.5" ]
1616

1717
jobs:
1818
cs-fixer:

src/Bigcommerce/Api/Connection.php

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -622,14 +622,4 @@ public function getHeadersList()
622622
{
623623
return $this->responseHeadersList;
624624
}
625-
626-
/**
627-
* Close the cURL resource when the instance is garbage collected
628-
*/
629-
public function __destruct()
630-
{
631-
if ($this->curl !== null) {
632-
curl_close($this->curl);
633-
}
634-
}
635625
}

0 commit comments

Comments
 (0)