HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux ip-172-31-42-149 5.15.0-1084-aws #91~20.04.1-Ubuntu SMP Fri May 2 07:00:04 UTC 2025 aarch64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/vhost/disk-apps/magento.bikenow.co/vendor/magento/module-analytics/Model/Connector.php
<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
namespace Magento\Analytics\Model;

use Magento\Framework\Exception\NotFoundException;
use Magento\Framework\ObjectManagerInterface;

/**
 * A connector to external services.
 *
 * Aggregates and executes commands which perform requests to external services.
 */
class Connector
{
    /**
     * A list of possible commands.
     *
     * An associative array in format: 'command_name' => 'command_class_name'.
     *
     * The list may be configured in each module via '/etc/di.xml'.
     *
     * @var string[]
     */
    private $commands;

    /**
     * @var ObjectManagerInterface
     */
    private $objectManager;

    /**
     * @param array $commands
     * @param ObjectManagerInterface $objectManager
     */
    public function __construct(
        array $commands,
        ObjectManagerInterface $objectManager
    ) {
        $this->commands = $commands;
        $this->objectManager = $objectManager;
    }

    /**
     * Executes a command in accordance with the given name.
     *
     * @param string $commandName
     * @return bool
     * @throws NotFoundException if the command is not found.
     */
    public function execute($commandName)
    {
        if (!array_key_exists($commandName, $this->commands)) {
            throw new NotFoundException(__('Command "%1" was not found.', $commandName));
        }

        /** @var \Magento\Analytics\Model\Connector\CommandInterface $command */
        $command = $this->objectManager->create($this->commands[$commandName]);

        return $command->execute();
    }
}