put() public method

DynamicField 설정 변경
public put ( ConfigEntity $config ) : void
$config Xpressengine\Config\ConfigEntity update config entity
return void
 /**
  * test put
  *
  * @return void
  */
 public function testPut()
 {
     $conn = $this->conn;
     $configHandler = $this->configHandler;
     $registerHandler = $this->registerHandler;
     $view = $this->view;
     $handler = new DynamicFieldHandler($conn, $configHandler, $registerHandler, $view);
     $config = $this->getConfigEntity();
     $configHandler->shouldReceive('put');
     $handler->put($config);
 }