Commit 44d58afc by TingSong-Syu

neoteched\rpc\screenshot\Config允许将配置在构造函数中以参数传入

parent c5be0835
......@@ -36,4 +36,15 @@ final class Config implements IAssignable {
* @var string
*/
public $format = self::FORMAT_PNG;
public function __construct(
array $conf = [
'url' => '',
'width' => 640,
'height' => 960,
'format' => Config::FORMAT_PNG,
]
) {
$this->assign($conf);
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment