NEW Upgrade of Stripe lib to 6.4.1

This commit is contained in:
Laurent Destailleur
2018-03-07 19:25:05 +01:00
parent fe45e82e99
commit b9f1695b34
59 changed files with 903 additions and 4343 deletions

View File

@@ -9,9 +9,9 @@ class Set implements IteratorAggregate
{
private $_elts;
public function __construct($members = array())
public function __construct($members = [])
{
$this->_elts = array();
$this->_elts = [];
foreach ($members as $item) {
$this->_elts[$item] = true;
}