mirror of
https://github.com/slawkens/myaac.git
synced 2026-04-23 10:53:32 +02:00
[WIP] Refactoring - Uniform error message + TOML exception catch
This commit is contained in:
@@ -38,13 +38,10 @@ class Items
|
||||
continue;
|
||||
}
|
||||
|
||||
$article = $item['article'] ?? '';
|
||||
$name = $item['name'] ?? '';
|
||||
$plural = $item['plural'] ?? '';
|
||||
$items[$id] = [
|
||||
'article' => $article,
|
||||
'name' => $name,
|
||||
'plural' => $plural,
|
||||
'article' => $item['article'] ?? '',
|
||||
'name' => $item['name'] ?? '',
|
||||
'plural' => $item['plural'] ?? '',
|
||||
'attributes' => $attributes,
|
||||
];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user