linkmobility4oxid/src/Application/Model/MessageClient.php

36 lines
826 B
PHP
Raw Normal View History

<?php
/**
2022-07-13 13:21:52 +02:00
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* https://www.d3data.de
*
* @copyright (C) D3 Data Development (Inh. Thomas Dartsch)
2022-07-13 13:21:52 +02:00
* @author D3 Data Development - Daniel Seifert <support@shopmodule.com>
* @link https://www.oxidmodule.com
*/
2022-07-13 13:21:52 +02:00
declare(strict_types=1);
namespace D3\Linkmobility4OXID\Application\Model;
use D3\LinkmobilityClient\Client;
class MessageClient
{
/**
* @return Client
*/
public function getClient(): Client
{
2023-01-06 23:42:17 +01:00
/** @var Configuration $configuration */
$configuration = d3GetOxidDIC()->get(Configuration::class);
/** @var Client $client */
$client = oxNew(Client::class, $configuration->getApiToken());
2023-01-06 23:42:17 +01:00
return $client;
}
2022-07-13 13:23:48 +02:00
}