mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-15 20:47:15 +01:00
27 lines
471 B
PHP
27 lines
471 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Xentral\Components\ScanbotApi;
|
|
|
|
final class Bootstrap
|
|
{
|
|
/**
|
|
* @return array
|
|
*/
|
|
public static function registerServices()
|
|
{
|
|
return [
|
|
'ScanbotApiClientFactory' => 'onInitScanbotApiClientFactory',
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @return ScanBotApiClientFactory
|
|
*/
|
|
public static function onInitScanbotApiClientFactory()
|
|
{
|
|
return new ScanbotApiClientFactory();
|
|
}
|
|
}
|