Skip to content

Commit

Permalink
feat: add new bulk event
Browse files Browse the repository at this point in the history
  • Loading branch information
shpran committed Oct 20, 2023
1 parent b76f052 commit 4d95e76
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions common/oatbox/event/BulkEvent.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?php

/**
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; under version 2
* of the License (non-upgradable).
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* Copyright (c) 2023 (original work) Open Assessment Technologies SA.
*/

declare(strict_types=1);

namespace oat\oatbox\event;

interface BulkEvent extends Event
{
public function getValues(): array;
}

0 comments on commit 4d95e76

Please sign in to comment.