* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShop\PrestaShop\Core\Grid\Action\Row; use Iterator; /** * Interface RowActionCollectionInterface defines contract for row actions collection. */ interface RowActionCollectionInterface extends Iterator { /** * Add row action to collection. * * @param RowActionInterface $action * * @return self */ public function add(RowActionInterface $action); }