Skip to content

Commit

Permalink
Fixing for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ugljesaspx committed Jun 5, 2024
1 parent 570a839 commit f23fdcf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Console/Command/NostoClearQueueCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
namespace Nosto\Tagging\Console\Command;

use Exception;

Check warning on line 5 in Console/Command/NostoClearQueueCommand.php

View workflow job for this annotation

GitHub Actions / Phan Analysis

Possibly zero references to use statement for classlike/namespace Exception (\Exception)
use Magento\Framework\Amqp\Config;
use Magento\Framework\Amqp\Config as AmqpConfig;
use Magento\Framework\App\ResourceConnection;

Check warning on line 7 in Console/Command/NostoClearQueueCommand.php

View workflow job for this annotation

GitHub Actions / Phan Analysis

Possibly zero references to use statement for classlike/namespace ResourceConnection (\Magento\Framework\App\ResourceConnection)
use Magento\Framework\Bulk\BulkManagementInterface;

Check warning on line 8 in Console/Command/NostoClearQueueCommand.php

View workflow job for this annotation

GitHub Actions / Phan Analysis

Possibly zero references to use statement for classlike/namespace BulkManagementInterface (\Magento\Framework\Bulk\BulkManagementInterface)
use Magento\Framework\DB\Adapter\Pdo\Mysql\Interceptor;

Check warning on line 9 in Console/Command/NostoClearQueueCommand.php

View workflow job for this annotation

GitHub Actions / Phan Analysis

Possibly zero references to use statement for classlike/namespace Interceptor (\Magento\Framework\DB\Adapter\Pdo\Mysql\Interceptor)
Expand Down Expand Up @@ -32,12 +32,12 @@ class NostoClearQueueCommand extends Command
public const NOSTO_DELETE_MESSAGE_QUEUE = 'nosto_product_sync.delete';

/**
* @var Config
* @var AmqpConfig
*/
private Config $amqpConfig;
private AmqpConfig $amqpConfig;

Check warning on line 37 in Console/Command/NostoClearQueueCommand.php

View workflow job for this annotation

GitHub Actions / Phan Analysis

Property \Nosto\Tagging\Console\Command\NostoClearQueueCommand->amqpConfig has undeclared type \Magento\Framework\Amqp\Config (Did you mean class \Nosto\Tagging\Block\Adminhtml\Account\Config)

public function __construct(
Config $amqpConfig
AmqpConfig $amqpConfig

Check warning on line 40 in Console/Command/NostoClearQueueCommand.php

View workflow job for this annotation

GitHub Actions / Phan Analysis

Parameter $amqpConfig has undeclared type \Magento\Framework\Amqp\Config (Did you mean class \Nosto\Tagging\Block\Adminhtml\Account\Config)
) {
$this->amqpConfig = $amqpConfig;
parent::__construct();
Expand Down

0 comments on commit f23fdcf

Please sign in to comment.