We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b00b336 commit 9c9172fCopy full SHA for 9c9172f
app/code/Magento/Sales/Model/ResourceModel/Collection/ExpiredQuotesCollection.php
@@ -3,6 +3,8 @@
3
* Copyright © Magento, Inc. All rights reserved.
4
* See COPYING.txt for license details.
5
*/
6
+declare(strict_types=1);
7
+
8
namespace Magento\Sales\Model\ResourceModel\Collection;
9
10
use Magento\Framework\App\Config\ScopeConfigInterface;
@@ -57,7 +59,7 @@ public function __construct(
57
59
* @param StoreInterface $store
58
60
* @return Collection
61
- public function getExpiredQuotes(StoreInterface $store)
62
+ public function getExpiredQuotes(StoreInterface $store): Collection
63
{
64
$lifetime = $this->config->getValue(
65
$this->quoteLifetime,
0 commit comments