Skip to content

Commit 904ffaf

Browse files
committed
update some for mem table
1 parent b11a43a commit 904ffaf

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

src/MemFactory.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ final class MemFactory
1717
/**
1818
* @param string $name
1919
* @param int $size
20-
* @param array $columns
20+
* @param array $columns ['field' => ['type', 'size']]
2121
*
2222
* @return MemTable
2323
*/

src/MemTable.php

+9-3
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
use function file_get_contents;
2020
use function file_put_contents;
2121
use function json_encode;
22+
use function property_exists;
2223

2324
/**
2425
* Class MemTable - an simple memory table base on swoole table
@@ -76,14 +77,19 @@ class MemTable
7677
* @param string $name
7778
* @param int $size
7879
* @param array $columns ['field' => ['type', 'size']]
79-
*
80-
* @throws InvalidArgumentException
80+
* @param array $options
8181
*/
82-
public function __construct(string $name = '', int $size = 0, array $columns = [])
82+
public function __construct(string $name = '', int $size = 0, array $columns = [], array $options = [])
8383
{
8484
$this->setName($name);
8585
$this->setSize($size);
8686
$this->setColumns($columns);
87+
88+
foreach ($options as $key => $value) {
89+
if (property_exists($this, $key)) {
90+
$this->$key = $value;
91+
}
92+
}
8793
}
8894

8995
/**

0 commit comments

Comments
 (0)