16 lines
407 B
PHP
Executable File
16 lines
407 B
PHP
Executable File
<?php
|
|
/**
|
|
* Copyright © Magento, Inc. All rights reserved.
|
|
* See COPYING.txt for license details.
|
|
*/
|
|
|
|
/** @var Value $config */
|
|
use Magento\Framework\App\Config\Value;
|
|
|
|
$config = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->create(Value::class);
|
|
$config->setPath('catalog/review/allow_guest');
|
|
$config->setScope('default');
|
|
$config->setScopeId(0);
|
|
$config->setValue(1);
|
|
$config->save();
|