reset
This commit is contained in:
parent
a929f77908
commit
ca43f02386
@ -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];
|
||||
|
@ -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);
|
||||
}
|
||||
|
@ -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'];
|
||||
|
||||
|
2
vendor/guzzlehttp/guzzle/src/Utils.php
vendored
2
vendor/guzzlehttp/guzzle/src/Utils.php
vendored
@ -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_';
|
||||
|
@ -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;
|
||||
}
|
||||
|
@ -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;
|
||||
|
@ -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),
|
||||
];
|
||||
}
|
||||
|
||||
|
@ -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([
|
||||
|
@ -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),
|
||||
];
|
||||
}
|
||||
}
|
||||
|
@ -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])) {
|
||||
|
@ -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;
|
||||
}
|
||||
|
@ -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();
|
||||
}
|
||||
|
@ -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 {
|
||||
|
@ -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) {
|
||||
|
@ -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);
|
||||
}
|
||||
|
@ -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);
|
||||
|
@ -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 {
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -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);
|
||||
|
@ -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;
|
||||
}
|
||||
|
@ -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),
|
||||
];
|
||||
}
|
||||
}
|
||||
|
@ -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
|
||||
|
||||
|
@ -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]);
|
||||
}
|
||||
|
||||
|
@ -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;
|
||||
|
@ -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();
|
||||
|
@ -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();
|
||||
|
@ -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);
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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;
|
||||
}
|
||||
|
@ -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
|
||||
|
2
vendor/symfony/cache/Traits/RedisTrait.php
vendored
2
vendor/symfony/cache/Traits/RedisTrait.php
vendored
@ -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) {
|
||||
|
@ -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']);
|
||||
|
||||
|
@ -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)])) {
|
||||
|
@ -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']));
|
||||
}
|
||||
|
@ -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();
|
||||
}
|
||||
|
||||
|
@ -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'],
|
||||
|
@ -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;
|
||||
|
@ -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) {
|
||||
|
2
vendor/symfony/http-foundation/InputBag.php
vendored
2
vendor/symfony/http-foundation/InputBag.php
vendored
@ -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));
|
||||
}
|
||||
|
||||
|
@ -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];
|
||||
|
@ -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')) {
|
||||
|
@ -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 {
|
||||
|
@ -942,7 +942,7 @@ EOHTML
|
||||
return $s.'</span>';
|
||||
}, $v).'</span>';
|
||||
|
||||
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'])) {
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
2
vendor/topthink/think-orm/src/db/Mongo.php
vendored
2
vendor/topthink/think-orm/src/db/Mongo.php
vendored
@ -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;
|
||||
|
@ -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());
|
||||
}
|
||||
|
@ -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());
|
||||
}
|
||||
|
@ -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());
|
||||
}
|
||||
|
@ -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());
|
||||
}
|
||||
|
@ -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());
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user