Merge pull request #1 from abdouskamel/patch-1

Add canCode() to Workable
This commit is contained in:
Tran Duc Thang 2018-01-25 10:03:45 +07:00 committed by GitHub
commit cc801b80f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -3,6 +3,7 @@
// Interface Segregation Principle Violation
interface Workable
{
public function canCode();
public function code();
public function test();
}