Skip to content
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

Update README.md #62

Merged
merged 1 commit into from
Sep 5, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1308,7 +1308,7 @@ class Worker implements WorkerInterface {
// ....working
}
public function eat() {
// ...... eating in launch break
// ...... eating in lunch break
}
}

Expand All @@ -1318,7 +1318,7 @@ class SuperWorker implements WorkerInterface {
}

public function eat() {
//.... eating in launch break
//.... eating in lunch break
}
}

Expand Down Expand Up @@ -1355,7 +1355,7 @@ class Worker implements WorkableInterface, FeedableInterface {
}

public function eat() {
//.... eating in launch break
//.... eating in lunch break
}
}

Expand All @@ -1371,7 +1371,7 @@ class SuperWorker implements WorkerInterface {
}

public function eat() {
//.... eating in launch break
//.... eating in lunch break
}
}

Expand Down Expand Up @@ -1467,7 +1467,7 @@ class Manager {
**[⬆ back to top](#table-of-contents)**

### Use method chaining
This pattern is very useful and commonly used it many libraries such
This pattern is very useful and commonly used in many libraries such
as PHPUnit and Doctrine. It allows your code to be expressive, and less verbose.
For that reason, I say, use method chaining and take a look at how clean your code
will be. In your class functions, simply return `this` at the end of every function,
Expand Down