Files
myep/src/BusProNet/XmlLoader/AbstractLoader.php
T

17 lines
378 B
PHP

<?php
namespace App\BusProNet\XmlLoader;
use App\BusProNet\TypeConversionTrait;
use App\BusProNet\XmlParserTrait;
use Symfony\Contracts\Cache\CacheInterface;
abstract class AbstractLoader
{
use TypeConversionTrait;
use XmlParserTrait;
public function __construct(protected readonly CacheInterface $cache, protected readonly ?string $xmlPath = null)
{
}
}