DIContainer/d3DicUtilities.php

57 lines
1.3 KiB
PHP
Raw Normal View History

2022-12-28 13:31:44 +01:00
<?php
/**
2023-01-03 10:49:19 +01:00
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
2022-12-28 13:31:44 +01:00
* https://www.d3data.de
*
* @copyright (C) D3 Data Development (Inh. Thomas Dartsch)
* @author D3 Data Development - Daniel Seifert <support@shopmodule.com>
2023-01-03 10:49:19 +01:00
* @link https://www.oxidmodule.com
2022-12-28 13:31:44 +01:00
*/
2023-01-03 10:49:19 +01:00
declare(strict_types=1);
2022-12-28 13:31:44 +01:00
namespace D3\DIContainerHandler;
class d3DicUtilities
{
/**
2023-11-23 15:01:44 +01:00
* @param string $classNameSpace
* @param string|null $additional
*
2022-12-28 13:31:44 +01:00
* @return string
*/
2023-11-23 15:01:44 +01:00
public static function getServiceId(string $classNameSpace, ?string $additional = null): string
2022-12-28 13:31:44 +01:00
{
return strtolower(
($additional ? $additional.'.' : '').
$classNameSpace
);
}
/**
2023-11-23 15:01:44 +01:00
* @param string $classNamespace
* @param string $argumentName
*
2022-12-28 13:31:44 +01:00
* @return string
*/
2023-11-23 15:01:44 +01:00
public static function getArgumentId(string $classNamespace, string $argumentName): string
2022-12-28 13:31:44 +01:00
{
return strtolower(
$classNamespace.
'.args.' .
$argumentName
);
}
/**
* @return string
*/
public static function getVendorDir(): string
{
return rtrim(dirname(dirname(dirname(__FILE__))), '/').'/';
}
2022-12-28 13:31:44 +01:00
}