diff --git a/vendor/dragonmantank/cron-expression/src/Cron/AbstractField.php b/vendor/dragonmantank/cron-expression/src/Cron/AbstractField.php index fb354253e..df2848df4 100755 --- a/vendor/dragonmantank/cron-expression/src/Cron/AbstractField.php +++ b/vendor/dragonmantank/cron-expression/src/Cron/AbstractField.php @@ -131,7 +131,7 @@ abstract class AbstractField implements FieldInterface { $chunks = array_map('trim', explode('/', $value, 2)); $range = $chunks[0]; - $step = $chunks[1] ?: 0; + $step = $chunks[1] ?? 0; // No step or 0 steps aren't cool /** @phpstan-ignore-next-line */ @@ -211,7 +211,7 @@ abstract class AbstractField implements FieldInterface $stepSize = 1; } else { $range = array_map('trim', explode('/', $expression, 2)); - $stepSize = $range[1] ?: 0; + $stepSize = $range[1] ?? 0; $range = $range[0]; $range = explode('-', $range, 2); $offset = $range[0]; diff --git a/vendor/guzzlehttp/guzzle/src/Handler/MockHandler.php b/vendor/guzzlehttp/guzzle/src/Handler/MockHandler.php index a690aa921..79664e279 100755 --- a/vendor/guzzlehttp/guzzle/src/Handler/MockHandler.php +++ b/vendor/guzzlehttp/guzzle/src/Handler/MockHandler.php @@ -203,7 +203,7 @@ class MockHandler implements \Countable $reason = null ): void { if (isset($options['on_stats'])) { - $transferTime = $options['transfer_time'] ?: 0; + $transferTime = $options['transfer_time'] ?? 0; $stats = new TransferStats($request, $response, $transferTime, $reason); ($options['on_stats'])($stats); } diff --git a/vendor/guzzlehttp/guzzle/src/RedirectMiddleware.php b/vendor/guzzlehttp/guzzle/src/RedirectMiddleware.php index e1e52a651..f67d448be 100755 --- a/vendor/guzzlehttp/guzzle/src/RedirectMiddleware.php +++ b/vendor/guzzlehttp/guzzle/src/RedirectMiddleware.php @@ -147,7 +147,7 @@ class RedirectMiddleware private function guardMax(RequestInterface $request, ResponseInterface $response, array &$options): void { $current = $options['__redirect_count'] - ?: 0; + ?? 0; $options['__redirect_count'] = $current + 1; $max = $options['allow_redirects']['max']; diff --git a/vendor/guzzlehttp/guzzle/src/Utils.php b/vendor/guzzlehttp/guzzle/src/Utils.php index 9cf94952e..e355f3212 100755 --- a/vendor/guzzlehttp/guzzle/src/Utils.php +++ b/vendor/guzzlehttp/guzzle/src/Utils.php @@ -326,7 +326,7 @@ EOT if ($uri->getHost()) { $asciiHost = self::idnToAsci($uri->getHost(), $options, $info); if ($asciiHost === false) { - $errorBitSet = $info['errors'] ?: 0; + $errorBitSet = $info['errors'] ?? 0; $errorConstants = array_filter(array_keys(get_defined_constants()), static function (string $name): bool { return substr($name, 0, 11) === 'IDNA_ERROR_'; diff --git a/vendor/markbaker/matrix/classes/src/Decomposition/QR.php b/vendor/markbaker/matrix/classes/src/Decomposition/QR.php index e31af77c1..4b6106f64 100755 --- a/vendor/markbaker/matrix/classes/src/Decomposition/QR.php +++ b/vendor/markbaker/matrix/classes/src/Decomposition/QR.php @@ -84,9 +84,9 @@ class QR for ($row = 0; $row < $this->columns; ++$row) { for ($column = 0; $column < $this->columns; ++$column) { if ($row < $column) { - $rGrid[$row][$column] = $this->qrMatrix[$row][$column] ?: 0.0; + $rGrid[$row][$column] = $this->qrMatrix[$row][$column] ?? 0.0; } elseif ($row === $column) { - $rGrid[$row][$column] = $this->rDiagonal[$row] ?: 0.0; + $rGrid[$row][$column] = $this->rDiagonal[$row] ?? 0.0; } else { $rGrid[$row][$column] = 0.0; } diff --git a/vendor/monolog/monolog/src/Monolog/Logger.php b/vendor/monolog/monolog/src/Monolog/Logger.php index 36e067143..775d7cf1f 100755 --- a/vendor/monolog/monolog/src/Monolog/Logger.php +++ b/vendor/monolog/monolog/src/Monolog/Logger.php @@ -345,7 +345,7 @@ class Logger implements LoggerInterface, ResettableInterface if ($this->detectCycles) { if (\PHP_VERSION_ID >= 80100 && $fiber = \Fiber::getCurrent()) { - $this->fiberLogDepth[$fiber] = $this->fiberLogDepth[$fiber] ?: 0; + $this->fiberLogDepth[$fiber] = $this->fiberLogDepth[$fiber] ?? 0; $logDepth = ++$this->fiberLogDepth[$fiber]; } else { $logDepth = ++$this->logDepth; diff --git a/vendor/overtrue/socialite/src/Providers/Base.php b/vendor/overtrue/socialite/src/Providers/Base.php index 8a8a06589..e3d6c2002 100755 --- a/vendor/overtrue/socialite/src/Providers/Base.php +++ b/vendor/overtrue/socialite/src/Providers/Base.php @@ -269,7 +269,7 @@ abstract class Base implements Contracts\ProviderInterface return $response + [ Contracts\RFC6749_ABNF_ACCESS_TOKEN => $response[$this->accessTokenKey], Contracts\RFC6749_ABNF_REFRESH_TOKEN => $response[$this->refreshTokenKey] ?? null, - Contracts\RFC6749_ABNF_EXPIRES_IN => \intval($response[$this->expiresInKey] ?: 0), + Contracts\RFC6749_ABNF_EXPIRES_IN => \intval($response[$this->expiresInKey] ?? 0), ]; } diff --git a/vendor/overtrue/socialite/src/Providers/Linkedin.php b/vendor/overtrue/socialite/src/Providers/Linkedin.php index 2fee3ece0..d6eea204f 100755 --- a/vendor/overtrue/socialite/src/Providers/Linkedin.php +++ b/vendor/overtrue/socialite/src/Providers/Linkedin.php @@ -81,9 +81,9 @@ class Linkedin extends Base $name = $firstName.' '.$lastName; $images = $user['profilePicture.displayImage~.elements'] ?? []; - $avatars = \array_filter($images, static fn ($image) => ($image['data']['com.linkedin.digitalmedia.mediaartifact.StillImage']['storageSize']['width'] ?: 0) === 100); + $avatars = \array_filter($images, static fn ($image) => ($image['data']['com.linkedin.digitalmedia.mediaartifact.StillImage']['storageSize']['width'] ?? 0) === 100); $avatar = \array_shift($avatars); - $originalAvatars = \array_filter($images, static fn ($image) => ($image['data']['com.linkedin.digitalmedia.mediaartifact.StillImage']['storageSize']['width'] ?: 0) === 800); + $originalAvatars = \array_filter($images, static fn ($image) => ($image['data']['com.linkedin.digitalmedia.mediaartifact.StillImage']['storageSize']['width'] ?? 0) === 800); $originalAvatar = \array_shift($originalAvatars); return new User([ diff --git a/vendor/overtrue/socialite/src/Providers/Tapd.php b/vendor/overtrue/socialite/src/Providers/Tapd.php index 81101d6c1..6e685e9e3 100755 --- a/vendor/overtrue/socialite/src/Providers/Tapd.php +++ b/vendor/overtrue/socialite/src/Providers/Tapd.php @@ -141,7 +141,7 @@ class Tapd extends Base return $response + [ Contracts\RFC6749_ABNF_ACCESS_TOKEN => $response['data'][$this->accessTokenKey], Contracts\RFC6749_ABNF_REFRESH_TOKEN => $response['data'][$this->refreshTokenKey] ?? null, - Contracts\RFC6749_ABNF_EXPIRES_IN => \intval($response['data'][$this->expiresInKey] ?: 0), + Contracts\RFC6749_ABNF_EXPIRES_IN => \intval($response['data'][$this->expiresInKey] ?? 0), ]; } } diff --git a/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Calculation.php b/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Calculation.php index e5c000074..6de546fa2 100755 --- a/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Calculation.php +++ b/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Calculation.php @@ -4215,7 +4215,7 @@ class Calculation $functionName = $matches[1]; // Get the function name $d = $stack->pop(); - $argumentCount = $d['value'] ?: 0; // See how many arguments there were (argument count is the next value stored on the stack) + $argumentCount = $d['value'] ?? 0; // See how many arguments there were (argument count is the next value stored on the stack) $output[] = $d; // Dump the argument count on the output $output[] = $stack->pop(); // Pop the function and push onto the output if (isset(self::$controlFunctions[$functionName])) { diff --git a/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/Time.php b/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/Time.php index 33a170e27..4ff71983f 100755 --- a/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/Time.php +++ b/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTimeExcel/Time.php @@ -117,7 +117,7 @@ class Time */ private static function toIntWithNullBool($value): int { - $value = $value ?: 0; + $value = $value ?? 0; if (is_bool($value)) { $value = (int) $value; } diff --git a/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/Compare.php b/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/Compare.php index 9e5a02ade..6aaf1faa5 100755 --- a/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/Compare.php +++ b/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/Compare.php @@ -72,7 +72,7 @@ class Compare try { $number = EngineeringValidations::validateFloat($number); - $step = EngineeringValidations::validateFloat($step ?: 0.0); + $step = EngineeringValidations::validateFloat($step ?? 0.0); } catch (Exception $e) { return $e->getMessage(); } diff --git a/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/Complex.php b/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/Complex.php index cbcafeb75..691de8b70 100755 --- a/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/Complex.php +++ b/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering/Complex.php @@ -38,8 +38,8 @@ class Complex return self::evaluateArrayArguments([self::class, __FUNCTION__], $realNumber, $imaginary, $suffix); } - $realNumber = $realNumber ?: 0.0; - $imaginary = $imaginary ?: 0.0; + $realNumber = $realNumber ?? 0.0; + $imaginary = $imaginary ?? 0.0; $suffix = $suffix ?? 'i'; try { diff --git a/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Dollar.php b/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Dollar.php index ddfe032ec..b1f0d25c7 100755 --- a/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Dollar.php +++ b/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial/Dollar.php @@ -59,7 +59,7 @@ class Dollar try { $fractionalDollar = FinancialValidations::validateFloat( - Functions::flattenSingleValue($fractionalDollar) ?: 0.0 + Functions::flattenSingleValue($fractionalDollar) ?? 0.0 ); $fraction = FinancialValidations::validateInt(Functions::flattenSingleValue($fraction)); } catch (Exception $e) { @@ -107,7 +107,7 @@ class Dollar try { $decimalDollar = FinancialValidations::validateFloat( - Functions::flattenSingleValue($decimalDollar) ?: 0.0 + Functions::flattenSingleValue($decimalDollar) ?? 0.0 ); $fraction = FinancialValidations::validateInt(Functions::flattenSingleValue($fraction)); } catch (Exception $e) { diff --git a/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Logical/Conditional.php b/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Logical/Conditional.php index bdbf72b1b..55d5f3274 100755 --- a/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Logical/Conditional.php +++ b/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Logical/Conditional.php @@ -54,7 +54,7 @@ class Conditional return $condition; } - $returnIfTrue = $returnIfTrue ?: 0; + $returnIfTrue = $returnIfTrue ?? 0; $returnIfFalse = $returnIfFalse ?? false; return ((bool) $condition) ? $returnIfTrue : $returnIfFalse; @@ -139,7 +139,7 @@ class Conditional } $errorpart = $errorpart ?? ''; - $testValue = $testValue ?: 0; // this is how Excel handles empty cell + $testValue = $testValue ?? 0; // this is how Excel handles empty cell return self::statementIf(ErrorValue::isError($testValue), $errorpart, $testValue); } @@ -166,7 +166,7 @@ class Conditional } $napart = $napart ?? ''; - $testValue = $testValue ?: 0; // this is how Excel handles empty cell + $testValue = $testValue ?? 0; // this is how Excel handles empty cell return self::statementIf(ErrorValue::isNa($testValue), $napart, $testValue); } diff --git a/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Matrix.php b/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Matrix.php index 767358bd2..8ee759e87 100755 --- a/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Matrix.php +++ b/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef/Matrix.php @@ -82,9 +82,9 @@ class Matrix return self::evaluateArrayArgumentsSubsetFrom([self::class, __FUNCTION__], 1, $matrix, $rowNum, $columnNum); } - $rowNum = $rowNum ?: 0; + $rowNum = $rowNum ?? 0; $originalColumnNum = $columnNum; - $columnNum = $columnNum ?: 0; + $columnNum = $columnNum ?? 0; try { $rowNum = LookupRefValidations::validatePositiveInt($rowNum); diff --git a/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/Beta.php b/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/Beta.php index e3c4a8f77..a88c1054a 100755 --- a/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/Beta.php +++ b/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical/Distributions/Beta.php @@ -43,7 +43,7 @@ class Beta return self::evaluateArrayArguments([self::class, __FUNCTION__], $value, $alpha, $beta, $rMin, $rMax); } - $rMin = $rMin ?: 0.0; + $rMin = $rMin ?? 0.0; $rMax = $rMax ?? 1.0; try { @@ -97,7 +97,7 @@ class Beta return self::evaluateArrayArguments([self::class, __FUNCTION__], $probability, $alpha, $beta, $rMin, $rMax); } - $rMin = $rMin ?: 0.0; + $rMin = $rMin ?? 0.0; $rMax = $rMax ?? 1.0; try { diff --git a/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData/Format.php b/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData/Format.php index 08861ff01..93e728202 100755 --- a/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData/Format.php +++ b/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData/Format.php @@ -142,7 +142,7 @@ class Format */ private static function convertValue($value) { - $value = $value ?: 0; + $value = $value ?? 0; if (is_bool($value)) { if (Functions::getCompatibilityMode() === Functions::COMPATIBILITY_OPENOFFICE) { $value = (int) $value; diff --git a/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Csv/Delimiter.php b/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Csv/Delimiter.php index ab5da47b0..029d4a186 100755 --- a/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Csv/Delimiter.php +++ b/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Csv/Delimiter.php @@ -66,7 +66,7 @@ class Delimiter $countLine = array_intersect_key($distribution, $delimiterKeys); foreach (self::POTENTIAL_DELIMETERS as $delimiter) { - $this->counts[$delimiter][] = $countLine[$delimiter] ?: 0; + $this->counts[$delimiter][] = $countLine[$delimiter] ?? 0; } } } diff --git a/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Gnumeric.php b/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Gnumeric.php index b694ab327..174553225 100755 --- a/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Gnumeric.php +++ b/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Gnumeric.php @@ -339,10 +339,10 @@ class Gnumeric extends BaseReader { if ($sheet !== null && isset($sheet->Selections)) { foreach ($sheet->Selections as $selection) { - $startCol = (int) ($selection->StartCol ?: 0); - $startRow = (int) ($selection->StartRow ?: 0) + 1; + $startCol = (int) ($selection->StartCol ?? 0); + $startRow = (int) ($selection->StartRow ?? 0) + 1; $endCol = (int) ($selection->EndCol ?? $startCol); - $endRow = (int) ($selection->endRow ?: 0) + 1; + $endRow = (int) ($selection->endRow ?? 0) + 1; $startColumn = Coordinate::stringFromColumnIndex($startCol + 1); $endColumn = Coordinate::stringFromColumnIndex($endCol + 1); diff --git a/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Gnumeric/PageSetup.php b/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Gnumeric/PageSetup.php index 4830e416a..0257fc9a4 100755 --- a/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Gnumeric/PageSetup.php +++ b/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Gnumeric/PageSetup.php @@ -99,19 +99,19 @@ class PageSetup break; case 'top': - $this->sheetMargin($key, $marginSet['header'] ?: 0); + $this->sheetMargin($key, $marginSet['header'] ?? 0); break; case 'bottom': - $this->sheetMargin($key, $marginSet['footer'] ?: 0); + $this->sheetMargin($key, $marginSet['footer'] ?? 0); break; case 'header': - $this->sheetMargin($key, ($marginSet['top'] ?: 0) - $marginSize); + $this->sheetMargin($key, ($marginSet['top'] ?? 0) - $marginSize); break; case 'footer': - $this->sheetMargin($key, ($marginSet['bottom'] ?: 0) - $marginSize); + $this->sheetMargin($key, ($marginSet['bottom'] ?? 0) - $marginSize); break; } diff --git a/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Ods/PageSettings.php b/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Ods/PageSettings.php index 95d4a841a..0e18af5d2 100755 --- a/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Ods/PageSettings.php +++ b/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Ods/PageSettings.php @@ -92,12 +92,12 @@ class PageSettings 'horizontalCentered' => $centered === 'horizontal' || $centered === 'both', 'verticalCentered' => $centered === 'vertical' || $centered === 'both', // margin size is already stored in inches, so no UOM conversion is required - 'marginLeft' => (float) ($marginLeft ?: 0.7), - 'marginRight' => (float) ($marginRight ?: 0.7), - 'marginTop' => (float) ($marginTop ?: 0.3), - 'marginBottom' => (float) ($marginBottom ?: 0.3), - 'marginHeader' => (float) ($marginHeader ?: 0.45), - 'marginFooter' => (float) ($marginFooter ?: 0.45), + 'marginLeft' => (float) ($marginLeft ?? 0.7), + 'marginRight' => (float) ($marginRight ?? 0.7), + 'marginTop' => (float) ($marginTop ?? 0.3), + 'marginBottom' => (float) ($marginBottom ?? 0.3), + 'marginHeader' => (float) ($marginHeader ?? 0.45), + 'marginFooter' => (float) ($marginFooter ?? 0.45), ]; } } diff --git a/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/OLE/PPS.php b/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/OLE/PPS.php index b6b674e70..2740a1b6d 100755 --- a/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/OLE/PPS.php +++ b/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/OLE/PPS.php @@ -142,8 +142,8 @@ class PPS $this->PrevPps = (int) $prev; $this->NextPps = (int) $next; $this->DirPps = (int) $dir; - $this->Time1st = $time_1st ?: 0; - $this->Time2nd = $time_2nd ?: 0; + $this->Time1st = $time_1st ?? 0; + $this->Time2nd = $time_2nd ?? 0; $this->_data = (string) $data; $this->children = $children; $this->Size = strlen((string) $data); @@ -185,7 +185,7 @@ class PPS . "\x00\x00\x00\x00" // 100 . OLE::localDateToOLE($this->Time1st) // 108 . OLE::localDateToOLE($this->Time2nd) // 116 - . pack('V', $this->startBlock ?: 0) // 120 + . pack('V', $this->startBlock ?? 0) // 120 . pack('V', $this->Size) // 124 . pack('V', 0); // 128 diff --git a/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Style.php b/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Style.php index 244c8e474..be70639eb 100755 --- a/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Style.php +++ b/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Style.php @@ -450,7 +450,7 @@ class Style extends Supervisor for ($row = $rangeStartIndexes[1]; $row <= $rangeEndIndexes[1]; ++$row) { $rowDimension = $this->getActiveSheet()->getRowDimension($row); // row without explicit style should be formatted based on default style - $oldXfIndex = $rowDimension->getXfIndex() ?: 0; + $oldXfIndex = $rowDimension->getXfIndex() ?? 0; $rowDimension->setXfIndex($newXfIndexes[$oldXfIndex]); } diff --git a/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Meta.php b/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Meta.php index 6cd674002..16f7c8b54 100755 --- a/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Meta.php +++ b/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Meta.php @@ -106,7 +106,7 @@ class Meta extends WriterPart break; case Properties::PROPERTY_TYPE_DATE: $objWriter->writeAttribute('meta:value-type', 'date'); - $dtobj = Date::dateTimeFromTimestamp($propertyValue ?: 0); + $dtobj = Date::dateTimeFromTimestamp($propertyValue ?? 0); $objWriter->writeRawData($dtobj->format(DATE_W3C)); break; diff --git a/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Pdf/Dompdf.php b/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Pdf/Dompdf.php index 3bf3e028c..690b0c54a 100755 --- a/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Pdf/Dompdf.php +++ b/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Pdf/Dompdf.php @@ -34,7 +34,7 @@ class Dompdf extends Pdf $fileHandle = parent::prepareForSave($filename); // Check for paper size and page orientation - $setup = $this->spreadsheet->getSheet($this->getSheetIndex() ?: 0)->getPageSetup(); + $setup = $this->spreadsheet->getSheet($this->getSheetIndex() ?? 0)->getPageSetup(); $orientation = $this->getOrientation() ?? $setup->getOrientation(); $orientation = ($orientation === PageSetup::ORIENTATION_LANDSCAPE) ? 'L' : 'P'; $printPaperSize = $this->getPaperSize() ?? $setup->getPaperSize(); diff --git a/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Pdf/Mpdf.php b/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Pdf/Mpdf.php index 7616a3625..d0ce9ed45 100755 --- a/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Pdf/Mpdf.php +++ b/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Pdf/Mpdf.php @@ -33,7 +33,7 @@ class Mpdf extends Pdf $fileHandle = parent::prepareForSave($filename); // Check for paper size and page orientation - $setup = $this->spreadsheet->getSheet($this->getSheetIndex() ?: 0)->getPageSetup(); + $setup = $this->spreadsheet->getSheet($this->getSheetIndex() ?? 0)->getPageSetup(); $orientation = $this->getOrientation() ?? $setup->getOrientation(); $orientation = ($orientation === PageSetup::ORIENTATION_LANDSCAPE) ? 'L' : 'P'; $printPaperSize = $this->getPaperSize() ?? $setup->getPaperSize(); diff --git a/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Pdf/Tcpdf.php b/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Pdf/Tcpdf.php index d6f851234..aefc6b56d 100755 --- a/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Pdf/Tcpdf.php +++ b/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Pdf/Tcpdf.php @@ -46,12 +46,12 @@ class Tcpdf extends Pdf $paperSize = 'LETTER'; // Letter (8.5 in. by 11 in.) // Check for paper size and page orientation - $setup = $this->spreadsheet->getSheet($this->getSheetIndex() ?: 0)->getPageSetup(); + $setup = $this->spreadsheet->getSheet($this->getSheetIndex() ?? 0)->getPageSetup(); $orientation = $this->getOrientation() ?? $setup->getOrientation(); $orientation = ($orientation === PageSetup::ORIENTATION_LANDSCAPE) ? 'L' : 'P'; $printPaperSize = $this->getPaperSize() ?? $setup->getPaperSize(); $paperSize = self::$paperSizes[$printPaperSize] ?? PageSetup::getPaperSizeDefault(); - $printMargins = $this->spreadsheet->getSheet($this->getSheetIndex() ?: 0)->getPageMargins(); + $printMargins = $this->spreadsheet->getSheet($this->getSheetIndex() ?? 0)->getPageMargins(); // Create PDF $pdf = $this->createExternalWriterInstance($orientation, 'pt', $paperSize); diff --git a/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls.php b/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls.php index 2fb6fb97b..33a404d42 100755 --- a/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls.php +++ b/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls.php @@ -434,7 +434,7 @@ class Xls extends BaseWriter $filename = $drawing->getPath(); $imageSize = getimagesize($filename); - $imageFormat = empty($imageSize) ? 0 : ($imageSize[2] ?: 0); + $imageFormat = empty($imageSize) ? 0 : ($imageSize[2] ?? 0); switch ($imageFormat) { case 1: // GIF, not supported by BIFF8, we convert to PNG diff --git a/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Worksheet.php b/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Worksheet.php index 7c61b1167..9f23bd365 100755 --- a/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Worksheet.php +++ b/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Worksheet.php @@ -1339,8 +1339,8 @@ class Worksheet extends BIFFwriter $colLast = $col_array[1] ?? null; $coldx = $col_array[2] ?? 8.43; $xfIndex = $col_array[3] ?? 15; - $grbit = $col_array[4] ?: 0; - $level = $col_array[5] ?: 0; + $grbit = $col_array[4] ?? 0; + $level = $col_array[5] ?? 0; $record = 0x007D; // Record identifier $length = 0x000C; // Number of bytes to follow diff --git a/vendor/symfony/cache/Adapter/CouchbaseBucketAdapter.php b/vendor/symfony/cache/Adapter/CouchbaseBucketAdapter.php index f31d6b431..36d5249b4 100755 --- a/vendor/symfony/cache/Adapter/CouchbaseBucketAdapter.php +++ b/vendor/symfony/cache/Adapter/CouchbaseBucketAdapter.php @@ -148,15 +148,15 @@ class CouchbaseBucketAdapter extends AbstractAdapter { $options['username'] = $options['username'] ?? ''; $options['password'] = $options['password'] ?? ''; - $options['operationTimeout'] = $options['operationTimeout'] ?: 0; - $options['configTimeout'] = $options['configTimeout'] ?: 0; - $options['configNodeTimeout'] = $options['configNodeTimeout'] ?: 0; - $options['n1qlTimeout'] = $options['n1qlTimeout'] ?: 0; - $options['httpTimeout'] = $options['httpTimeout'] ?: 0; - $options['configDelay'] = $options['configDelay'] ?: 0; - $options['htconfigIdleTimeout'] = $options['htconfigIdleTimeout'] ?: 0; - $options['durabilityInterval'] = $options['durabilityInterval'] ?: 0; - $options['durabilityTimeout'] = $options['durabilityTimeout'] ?: 0; + $options['operationTimeout'] = $options['operationTimeout'] ?? 0; + $options['configTimeout'] = $options['configTimeout'] ?? 0; + $options['configNodeTimeout'] = $options['configNodeTimeout'] ?? 0; + $options['n1qlTimeout'] = $options['n1qlTimeout'] ?? 0; + $options['httpTimeout'] = $options['httpTimeout'] ?? 0; + $options['configDelay'] = $options['configDelay'] ?? 0; + $options['htconfigIdleTimeout'] = $options['htconfigIdleTimeout'] ?? 0; + $options['durabilityInterval'] = $options['durabilityInterval'] ?? 0; + $options['durabilityTimeout'] = $options['durabilityTimeout'] ?? 0; return $options; } diff --git a/vendor/symfony/cache/Messenger/EarlyExpirationHandler.php b/vendor/symfony/cache/Messenger/EarlyExpirationHandler.php index 58b160f01..9e53f5d2f 100755 --- a/vendor/symfony/cache/Messenger/EarlyExpirationHandler.php +++ b/vendor/symfony/cache/Messenger/EarlyExpirationHandler.php @@ -32,8 +32,8 @@ class EarlyExpirationHandler implements MessageHandlerInterface { $item = $message->getItem(); $metadata = $item->getMetadata(); - $expiry = $metadata[CacheItem::METADATA_EXPIRY] ?: 0; - $ctime = $metadata[CacheItem::METADATA_CTIME] ?: 0; + $expiry = $metadata[CacheItem::METADATA_EXPIRY] ?? 0; + $ctime = $metadata[CacheItem::METADATA_CTIME] ?? 0; if ($expiry && $ctime) { // skip duplicate or expired messages diff --git a/vendor/symfony/cache/Traits/RedisTrait.php b/vendor/symfony/cache/Traits/RedisTrait.php index 4e9025eb1..67d866316 100755 --- a/vendor/symfony/cache/Traits/RedisTrait.php +++ b/vendor/symfony/cache/Traits/RedisTrait.php @@ -196,7 +196,7 @@ trait RedisTrait $hostIndex = 0; do { $host = $hosts[$hostIndex]['host'] ?? $hosts[$hostIndex]['path']; - $port = $hosts[$hostIndex]['port'] ?: 0; + $port = $hosts[$hostIndex]['port'] ?? 0; $address = false; if (isset($hosts[$hostIndex]['host']) && $tls) { diff --git a/vendor/symfony/http-client/DataCollector/HttpClientDataCollector.php b/vendor/symfony/http-client/DataCollector/HttpClientDataCollector.php index 888b4ce00..dda03d5a3 100755 --- a/vendor/symfony/http-client/DataCollector/HttpClientDataCollector.php +++ b/vendor/symfony/http-client/DataCollector/HttpClientDataCollector.php @@ -72,12 +72,12 @@ final class HttpClientDataCollector extends DataCollector implements LateDataCol public function getRequestCount(): int { - return $this->data['request_count'] ?: 0; + return $this->data['request_count'] ?? 0; } public function getErrorCount(): int { - return $this->data['error_count'] ?: 0; + return $this->data['error_count'] ?? 0; } /** @@ -112,12 +112,12 @@ final class HttpClientDataCollector extends DataCollector implements LateDataCol ]; foreach ($traces as $i => $trace) { - if (400 <= ($trace['info']['http_code'] ?: 0)) { + if (400 <= ($trace['info']['http_code'] ?? 0)) { ++$errorCount; } $info = $trace['info']; - $traces[$i]['http_code'] = $info['http_code'] ?: 0; + $traces[$i]['http_code'] = $info['http_code'] ?? 0; unset($info['filetime'], $info['http_code'], $info['ssl_verify_result'], $info['content_type']); diff --git a/vendor/symfony/http-client/HttpClientTrait.php b/vendor/symfony/http-client/HttpClientTrait.php index 078b60e2a..f09b4e8ea 100755 --- a/vendor/symfony/http-client/HttpClientTrait.php +++ b/vendor/symfony/http-client/HttpClientTrait.php @@ -508,7 +508,7 @@ trait HttpClientTrait $parts['query'] = self::mergeQueryString($parts['query'] ?? null, $query, true); } - $port = $parts['port'] ?: 0; + $port = $parts['port'] ?? 0; if (null !== $scheme = $parts['scheme'] ?? null) { if (!isset($allowedSchemes[$scheme = strtolower($scheme)])) { diff --git a/vendor/symfony/http-client/Response/AsyncContext.php b/vendor/symfony/http-client/Response/AsyncContext.php index 649685230..7fd815d52 100755 --- a/vendor/symfony/http-client/Response/AsyncContext.php +++ b/vendor/symfony/http-client/Response/AsyncContext.php @@ -163,7 +163,7 @@ final class AsyncContext $onProgress($dlNow, $dlSize, $thisInfo + $info); }; } - if (0 < ($info['max_duration'] ?: 0) && 0 < ($info['total_time'] ?: 0)) { + if (0 < ($info['max_duration'] ?? 0) && 0 < ($info['total_time'] ?? 0)) { if (0 >= $options['max_duration'] = $info['max_duration'] - $info['total_time']) { throw new TransportException(sprintf('Max duration was reached for "%s".', $info['url'])); } diff --git a/vendor/symfony/http-client/Response/CurlResponse.php b/vendor/symfony/http-client/Response/CurlResponse.php index f8f5ffbfe..ae18d5840 100755 --- a/vendor/symfony/http-client/Response/CurlResponse.php +++ b/vendor/symfony/http-client/Response/CurlResponse.php @@ -329,7 +329,7 @@ final class CurlResponse implements ResponseInterface, StreamableInterface } } - if (\CURLE_RECV_ERROR === $result && 'H' === $waitFor[0] && 400 <= ($responses[(int) $ch]->info['http_code'] ?: 0)) { + if (\CURLE_RECV_ERROR === $result && 'H' === $waitFor[0] && 400 <= ($responses[(int) $ch]->info['http_code'] ?? 0)) { $multi->handlesActivity[$id][] = new FirstChunk(); } diff --git a/vendor/symfony/http-client/Response/MockResponse.php b/vendor/symfony/http-client/Response/MockResponse.php index 2098ba9bb..496b7bee5 100755 --- a/vendor/symfony/http-client/Response/MockResponse.php +++ b/vendor/symfony/http-client/Response/MockResponse.php @@ -279,9 +279,9 @@ class MockResponse implements ResponseInterface, StreamableInterface // populate info related to headers $info = $mock->getInfo() ?: []; - $response->info['http_code'] = ($info['http_code'] ?: 0) ?: $mock->getStatusCode() ?: 200; + $response->info['http_code'] = ($info['http_code'] ?? 0) ?: $mock->getStatusCode() ?: 200; $response->addResponseHeaders($info['response_headers'] ?? [], $response->info, $response->headers); - $dlSize = isset($response->headers['content-encoding']) || 'HEAD' === $response->info['http_method'] || \in_array($response->info['http_code'], [204, 304], true) ? 0 : (int) ($response->headers['content-length'][0] ?: 0); + $dlSize = isset($response->headers['content-encoding']) || 'HEAD' === $response->info['http_method'] || \in_array($response->info['http_code'], [204, 304], true) ? 0 : (int) ($response->headers['content-length'][0] ?? 0); $response->info = [ 'start_time' => $response->info['start_time'], diff --git a/vendor/symfony/http-client/Response/NativeResponse.php b/vendor/symfony/http-client/Response/NativeResponse.php index c7cc29622..96f1256a1 100755 --- a/vendor/symfony/http-client/Response/NativeResponse.php +++ b/vendor/symfony/http-client/Response/NativeResponse.php @@ -205,7 +205,7 @@ final class NativeResponse implements ResponseInterface, StreamableInterface $host = parse_url($this->info['redirect_url'] ?? $this->url, \PHP_URL_HOST); $this->multi->lastTimeout = null; $this->multi->openHandles[$this->id] = [&$this->pauseExpiry, $h, $this->buffer, $this->onProgress, &$this->remaining, &$this->info, $host]; - $this->multi->hosts[$host] = 1 + ($this->multi->hosts[$host] ?: 0); + $this->multi->hosts[$host] = 1 + ($this->multi->hosts[$host] ?? 0); } /** @@ -336,7 +336,7 @@ final class NativeResponse implements ResponseInterface, StreamableInterface if ($response->pauseExpiry && microtime(true) < $response->pauseExpiry) { // Create empty open handles to tell we still have pending requests $multi->openHandles[$i] = [\INF, null, null, null]; - } elseif ($maxHosts && $maxHosts > ($multi->hosts[parse_url($response->url, \PHP_URL_HOST)] ?: 0)) { + } elseif ($maxHosts && $maxHosts > ($multi->hosts[parse_url($response->url, \PHP_URL_HOST)] ?? 0)) { // Open the next pending request - this is a blocking operation so we do only one of them $response->open(); $multi->sleep = false; diff --git a/vendor/symfony/http-client/Response/StreamWrapper.php b/vendor/symfony/http-client/Response/StreamWrapper.php index 74291b3c2..3768e2e06 100755 --- a/vendor/symfony/http-client/Response/StreamWrapper.php +++ b/vendor/symfony/http-client/Response/StreamWrapper.php @@ -132,7 +132,7 @@ class StreamWrapper } } - if (0 !== fseek($this->content, $this->offset ?: 0)) { + if (0 !== fseek($this->content, $this->offset ?? 0)) { return false; } @@ -208,7 +208,7 @@ class StreamWrapper public function stream_tell(): int { - return $this->offset ?: 0; + return $this->offset ?? 0; } public function stream_eof(): bool @@ -230,7 +230,7 @@ class StreamWrapper $size = ftell($this->content); if (\SEEK_CUR === $whence) { - $offset += $this->offset ?: 0; + $offset += $this->offset ?? 0; } if (\SEEK_END === $whence || $size < $offset) { diff --git a/vendor/symfony/http-foundation/InputBag.php b/vendor/symfony/http-foundation/InputBag.php index efcc4022f..fd833467f 100755 --- a/vendor/symfony/http-foundation/InputBag.php +++ b/vendor/symfony/http-foundation/InputBag.php @@ -85,7 +85,7 @@ final class InputBag extends ParameterBag $options = ['flags' => $options]; } - if (\is_array($value) && !(($options['flags'] ?: 0) & (\FILTER_REQUIRE_ARRAY | \FILTER_FORCE_ARRAY))) { + if (\is_array($value) && !(($options['flags'] ?? 0) & (\FILTER_REQUIRE_ARRAY | \FILTER_FORCE_ARRAY))) { throw new BadRequestException(sprintf('Input value "%s" contains an array, but "FILTER_REQUIRE_ARRAY" or "FILTER_FORCE_ARRAY" flags were not set.', $key)); } diff --git a/vendor/symfony/polyfill-intl-normalizer/Normalizer.php b/vendor/symfony/polyfill-intl-normalizer/Normalizer.php index 0b7f46b45..81704ab37 100755 --- a/vendor/symfony/polyfill-intl-normalizer/Normalizer.php +++ b/vendor/symfony/polyfill-intl-normalizer/Normalizer.php @@ -154,7 +154,7 @@ class Normalizer || $lastUcls) { // Table lookup and combining chars composition - $ucls = $combClass[$uchr] ?: 0; + $ucls = $combClass[$uchr] ?? 0; if (isset($compMap[$lastUchr.$uchr]) && (!$lastUcls || $lastUcls < $ucls)) { $lastUchr = $compMap[$lastUchr.$uchr]; diff --git a/vendor/symfony/var-dumper/Caster/ExceptionCaster.php b/vendor/symfony/var-dumper/Caster/ExceptionCaster.php index 5b08a1024..f2c0f9687 100755 --- a/vendor/symfony/var-dumper/Caster/ExceptionCaster.php +++ b/vendor/symfony/var-dumper/Caster/ExceptionCaster.php @@ -209,8 +209,8 @@ class ExceptionCaster $srcKey = $f['file']; $ellipsis = new LinkStub($srcKey, 0); $srcAttr = 'collapse='.(int) $ellipsis->inVendor; - $ellipsisTail = $ellipsis->attr['ellipsis-tail'] ?: 0; - $ellipsis = $ellipsis->attr['ellipsis'] ?: 0; + $ellipsisTail = $ellipsis->attr['ellipsis-tail'] ?? 0; + $ellipsis = $ellipsis->attr['ellipsis'] ?? 0; if (file_exists($f['file']) && 0 <= self::$srcContext) { if (!empty($f['class']) && (is_subclass_of($f['class'], 'Twig\Template') || is_subclass_of($f['class'], 'Twig_Template')) && method_exists($f['class'], 'getDebugInfo')) { diff --git a/vendor/symfony/var-dumper/Dumper/CliDumper.php b/vendor/symfony/var-dumper/Dumper/CliDumper.php index ad8773c69..e3861cdaf 100755 --- a/vendor/symfony/var-dumper/Dumper/CliDumper.php +++ b/vendor/symfony/var-dumper/Dumper/CliDumper.php @@ -488,7 +488,7 @@ class CliDumper extends AbstractDumper href: if ($this->colors && $this->handlesHrefGracefully) { - if (isset($attr['file']) && $href = $this->getSourceLink($attr['file'], $attr['line'] ?: 0)) { + if (isset($attr['file']) && $href = $this->getSourceLink($attr['file'], $attr['line'] ?? 0)) { if ('note' === $style) { $value .= "\033]8;;{$href}\033\\^\033]8;;\033\\"; } else { diff --git a/vendor/symfony/var-dumper/Dumper/HtmlDumper.php b/vendor/symfony/var-dumper/Dumper/HtmlDumper.php index d1a80f1be..9b57f900e 100755 --- a/vendor/symfony/var-dumper/Dumper/HtmlDumper.php +++ b/vendor/symfony/var-dumper/Dumper/HtmlDumper.php @@ -942,7 +942,7 @@ EOHTML return $s.''; }, $v).''; - if (isset($attr['file']) && $href = $this->getSourceLink($attr['file'], $attr['line'] ?: 0)) { + if (isset($attr['file']) && $href = $this->getSourceLink($attr['file'], $attr['line'] ?? 0)) { $attr['href'] = $href; } if (isset($attr['href'])) { diff --git a/vendor/topthink/framework/src/think/Validate.php b/vendor/topthink/framework/src/think/Validate.php index 351a36362..078840641 100755 --- a/vendor/topthink/framework/src/think/Validate.php +++ b/vendor/topthink/framework/src/think/Validate.php @@ -1180,7 +1180,7 @@ class Validate if (is_string($rule) && strpos($rule, ',')) { [$rule, $param] = explode(',', $rule); } elseif (is_array($rule)) { - $param = $rule[1] ?: 0; + $param = $rule[1] ?? 0; $rule = $rule[0]; } else { $param = 0; diff --git a/vendor/topthink/think-orm/src/db/BaseQuery.php b/vendor/topthink/think-orm/src/db/BaseQuery.php index 229d2e6e4..60aa21e48 100755 --- a/vendor/topthink/think-orm/src/db/BaseQuery.php +++ b/vendor/topthink/think-orm/src/db/BaseQuery.php @@ -705,7 +705,7 @@ abstract class BaseQuery ->limit(1) ->find(); - $result = $data[$key] ?: 0; + $result = $data[$key] ?? 0; if (is_numeric($result)) { $lastId = 'asc' == $sort ? ($result - 1) + ($page - 1) * $listRows : ($result + 1) - ($page - 1) * $listRows; diff --git a/vendor/topthink/think-orm/src/db/Mongo.php b/vendor/topthink/think-orm/src/db/Mongo.php index ac17a9884..cf6e9c4c4 100755 --- a/vendor/topthink/think-orm/src/db/Mongo.php +++ b/vendor/topthink/think-orm/src/db/Mongo.php @@ -113,7 +113,7 @@ class Mongo extends BaseQuery public function aggregate(string $aggregate, $field, bool $force = false) { $result = $this->cmd('aggregate', [strtolower($aggregate), $field]); - $value = $result[0]['aggregate'] ?: 0; + $value = $result[0]['aggregate'] ?? 0; if ($force) { $value += 0; diff --git a/vendor/w7corp/easywechat/src/MiniApp/Application.php b/vendor/w7corp/easywechat/src/MiniApp/Application.php index 61eb56602..9e40cc918 100755 --- a/vendor/w7corp/easywechat/src/MiniApp/Application.php +++ b/vendor/w7corp/easywechat/src/MiniApp/Application.php @@ -167,7 +167,7 @@ class Application implements ApplicationInterface accessToken: $this->getAccessToken(), failureJudge: fn ( Response $response - ) => (bool) ($response->toArray()['errcode'] ?: 0) || ! is_null($response->toArray()['error'] ?? null), + ) => (bool) ($response->toArray()['errcode'] ?? 0) || ! is_null($response->toArray()['error'] ?? null), throw: (bool) $this->config->get('http.throw', true), ))->setPresets($this->config->all()); } diff --git a/vendor/w7corp/easywechat/src/OfficialAccount/Application.php b/vendor/w7corp/easywechat/src/OfficialAccount/Application.php index af3705755..33b57bb24 100755 --- a/vendor/w7corp/easywechat/src/OfficialAccount/Application.php +++ b/vendor/w7corp/easywechat/src/OfficialAccount/Application.php @@ -226,7 +226,7 @@ class Application implements ApplicationInterface return (new AccessTokenAwareClient( client: $httpClient, accessToken: $this->getAccessToken(), - failureJudge: fn (Response $response) => (bool) ($response->toArray()['errcode'] ?: 0), + failureJudge: fn (Response $response) => (bool) ($response->toArray()['errcode'] ?? 0), throw: (bool) $this->config->get('http.throw', true), ))->setPresets($this->config->all()); } diff --git a/vendor/w7corp/easywechat/src/OpenPlatform/Application.php b/vendor/w7corp/easywechat/src/OpenPlatform/Application.php index f1e29d890..abb4f7d56 100755 --- a/vendor/w7corp/easywechat/src/OpenPlatform/Application.php +++ b/vendor/w7corp/easywechat/src/OpenPlatform/Application.php @@ -462,7 +462,7 @@ class Application implements ApplicationInterface return (new AccessTokenAwareClient( client: $this->getHttpClient(), accessToken: $this->getComponentAccessToken(), - failureJudge: fn (Response $response) => (bool) ($response->toArray()['errcode'] ?: 0), + failureJudge: fn (Response $response) => (bool) ($response->toArray()['errcode'] ?? 0), throw: (bool) $this->config->get('http.throw', true), ))->setPresets($this->config->all()); } diff --git a/vendor/w7corp/easywechat/src/OpenWork/Application.php b/vendor/w7corp/easywechat/src/OpenWork/Application.php index 7c6980240..9f13e9219 100755 --- a/vendor/w7corp/easywechat/src/OpenWork/Application.php +++ b/vendor/w7corp/easywechat/src/OpenWork/Application.php @@ -269,7 +269,7 @@ class Application implements ApplicationInterface return (new AccessTokenAwareClient( client: $this->getHttpClient(), accessToken: $this->getProviderAccessToken(), - failureJudge: fn (Response $response) => (bool) ($response->toArray()['errcode'] ?: 0), + failureJudge: fn (Response $response) => (bool) ($response->toArray()['errcode'] ?? 0), throw: (bool) $this->config->get('http.throw', true), ))->setPresets($this->config->all()); } diff --git a/vendor/w7corp/easywechat/src/Work/Application.php b/vendor/w7corp/easywechat/src/Work/Application.php index e5b68b82e..982c64f76 100755 --- a/vendor/w7corp/easywechat/src/Work/Application.php +++ b/vendor/w7corp/easywechat/src/Work/Application.php @@ -133,7 +133,7 @@ class Application implements ApplicationInterface return (new AccessTokenAwareClient( client: $this->getHttpClient(), accessToken: $this->getAccessToken(), - failureJudge: fn (Response $response) => (bool) ($response->toArray()['errcode'] ?: 0), + failureJudge: fn (Response $response) => (bool) ($response->toArray()['errcode'] ?? 0), throw: (bool) $this->config->get('http.throw', true), ))->setPresets($this->config->all()); }