-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
撰写 README #6
Comments
需要写使用例子,所以打 tag,尝试安装调用,发现 依赖注入自动绑定的方式 没法传递构造参数: public function handle(Iteration $iteration)
{
$iteration->create();
} 所以目前的写法不对: class Iteration
{
private Core $core;
public function __construct(string $token, Core $core = null)
{
$this->core = $core ?? new Core($token);
} |
调用报错:The goal must be a string. #8 看来应该在本地安装调试,而不应该这么自信的直接打 tag |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
codecov badge 要放上 https://app.codecov.io/gh/Coding/coding-sdk-php/
目前覆盖率 100% !
其余参考:https://github.com/aws/aws-sdk-php
The text was updated successfully, but these errors were encountered: