Skip to content

Commit

Permalink
Adds BulkStorerInterface. (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
fmizzell authored Mar 15, 2020
1 parent c9ed01f commit ef8c159
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/BulkStorerInterface.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?php

namespace Contracts;

interface BulkStorerInterface
{

/**
* Store multiple.
*
* @param array $data
* An array of strings to be stored.
*/
public function storeMultiple(array $data);
}

0 comments on commit ef8c159

Please sign in to comment.