Update.php 483 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Theme\Model\ResourceModel\Theme\Customization;
  7. /**
  8. * Theme customization link resource model
  9. */
  10. class Update extends \Magento\Framework\Model\ResourceModel\Db\AbstractDb
  11. {
  12. /**
  13. * Resource initialization
  14. *
  15. * @return void
  16. */
  17. protected function _construct()
  18. {
  19. $this->_init('theme_file_update', 'file_update_id');
  20. }
  21. }