This commit is contained in:
2023-08-16 16:35:55 +08:00
parent 04db55e79a
commit 62b7d86b45
2 changed files with 5 additions and 3 deletions
+2 -1
View File
@@ -17,9 +17,10 @@ interface PoolInterface
/**
* @param string $name
* @param int $waite_time
* @return mixed
*/
public function get(string $name): mixed;
public function get(string $name, int $waite_time): mixed;
/**