->
andWhere($builder->
expr()->
eq('corePlugins.name', ':' .
$pluginNameKey)) ->
setParameter($pluginNameKey,
$pluginName) ->
select([ 'coreConfigElements.name',
'coreConfigElements.value',
]) ->
execute() ->
fetchAll(PDO::FETCH_KEY_PAIR
) ;
return AbstractShopConfigurationLayer::
unserializeArray($values);
} /**
* @throws WriterException
*/
public function writeValues(string
$pluginName, ?int
$shopId, array
$data): void
{ $baseException =
new LogicException('Cannot change values on default layer'
);
throw new WriterException($baseException);
}}