postId = (int) $postId; parent::__construct(); } /** * Save run migrations * * @return mixed */ protected function storeData() { update_post_meta( $this->postId, Brizy_Admin_Migrations_AbstractStorage::KEY, $this->data ); } /** * @return mixed */ protected function loadData() { $get_post_meta = get_post_meta( $this->postId, Brizy_Admin_Migrations_AbstractStorage::KEY, true ); $this->data = is_array( $get_post_meta ) ? $get_post_meta : array(); } }