1: <?php 2: 3: /** 4: * @copyright Copyright (c) 2009-2022 ThemeCatcher (https://www.themecatcher.net) 5: */ 6: interface Quform_Attachable 7: { 8: public function hasAttachments(); 9: 10: public function getAttachments(); 11: } 12: