-
Notifications
You must be signed in to change notification settings - Fork 0
/
YMLGenerator.php
44 lines (37 loc) · 1.01 KB
/
YMLGenerator.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php
namespace src;
class YMLGenerator
{
/**
* Название итогового файла
* @var string
*/
public $filename;
public function __construct(string $filename)
{
$this->filename = $filename;
}
/**
* Запуск генератора
* @param array $data
*/
public function run(array $data)
{
$data['availableCountries'] = $this->getAvailableCountries();
$validator = new Validator($data);
$result = $validator->validateAll();
$builder = new Builder($result);
$content = $builder->build();
file_put_contents($this->filename, $content);
echo "Файл {$this->filename} успешно сгенерирован!";
}
/**
* Получение списка доступных стран
* @return array
*/
private function getAvailableCountries()
{
$countriesList = file_get_contents('countries.csv');
return explode(',', $countriesList);
}
}