Skip to content

Commit ef8c159

Browse files
authored
Adds BulkStorerInterface. (#13)
1 parent c9ed01f commit ef8c159

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

src/BulkStorerInterface.php

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?php
2+
3+
namespace Contracts;
4+
5+
interface BulkStorerInterface
6+
{
7+
8+
/**
9+
* Store multiple.
10+
*
11+
* @param array $data
12+
* An array of strings to be stored.
13+
*/
14+
public function storeMultiple(array $data);
15+
}

0 commit comments

Comments
 (0)