Skip to content

Commit

Permalink
Fixed PHPStan issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Marvin-Magmodules committed Mar 24, 2021
1 parent 6ad1fb7 commit 5ec0e78
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Model/Command/ProfileInvalidate.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public function run(InputInterface $input, OutputInterface $output)
$where['customer_id IN (?)'] = [$input->getArguments()['customer-id']];
}
return $connection->update(
$this->contentResource->getTable('datatrics_profile'),
$this->profileResource->getTable('datatrics_profile'),
['status' => 'Queued for Update'],
$where
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ class AttributeMapper
/**
* Store ID
*
* @var int
* @var int|array
*/
private $storeId;

Expand Down
2 changes: 1 addition & 1 deletion Service/ProductData/AttributeCollector/Data/Category.php
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ private function getRootCategoryId()

/**
* @param array $data
* @return mixed
* @return array
* @throws NoSuchEntityException
*/
private function mergeUrl(array $data): array
Expand Down

0 comments on commit 5ec0e78

Please sign in to comment.