-
Notifications
You must be signed in to change notification settings - Fork 114
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
Add missing console commands for client management #41
Conversation
@@ -9,4 +9,11 @@ interface ClientManagerInterface | |||
public function find(string $identifier): ?Client; | |||
|
|||
public function save(Client $client): void; | |||
|
|||
public function remove(Client $client): void; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Allypost @spideyfusion Adding methods to an interface is a breaking change and as such this PR can be merged only for the next major version which I suppose will be tagged soon after #43 gets merged.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@X-Coder264 Yeah this will get merged after the version bump.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Allypost My point was this should be merged before the next major version gets tagged. Anyway, this discussion isn't important for this PR, @spideyfusion will take care of that :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@X-Coder264 Indeed. :)
…EntityManagerInterface`
Codecov Report
@@ Coverage Diff @@
## master #41 +/- ##
============================================
+ Coverage 88.93% 89.78% +0.85%
- Complexity 222 264 +42
============================================
Files 39 42 +3
Lines 759 901 +142
============================================
+ Hits 675 809 +134
- Misses 84 92 +8
Continue to review full report at Codecov.
|
Fix #3