Add canCode() in Workable

This commit is contained in:
Abdous Kamel 2018-01-19 15:03:24 +01:00 committed by GitHub
parent b84657cb73
commit 5fca394a22
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();
}