Crud\Action\Bulk\SetValueAction::__construct PHP Method

__construct() public method

Constructor
public __construct ( Controller $Controller, array $config = [] ) : void
$Controller Cake\Controller\Controller Controller instance
$config array Default settings
return void
    public function __construct(Controller $Controller, $config = [])
    {
        $this->_defaultConfig['messages'] = ['success' => ['text' => 'Set value successfully'], 'error' => ['text' => 'Could not set value']];
        $this->_defaultConfig['value'] = null;
        parent::__construct($Controller, $config);
    }