Skip to content

Instantly share code, notes, and snippets.

View a-menshchikov's full-sized avatar
🤔

Alexander Menshchikov a-menshchikov

🤔
View GitHub Profile
@a-menshchikov
a-menshchikov / ExplodeEnvVarProcessor.php
Created July 13, 2021 22:18
Simplified CsvEnvVarProcessor
<?php declare(strict_types=1);
use Symfony\Component\DependencyInjection\EnvVarProcessorInterface;
use Symfony\Component\DependencyInjection\Exception\RuntimeException;
final class CsvEnvVarProcessor implements EnvVarProcessorInterface
{
private const DELIMITERS = [
'dot' => '.',
'colon' => ':',