Last active
September 16, 2015 19:19
-
-
Save DannyvdSluijs/31af7f2bc8993af5ec6d to your computer and use it in GitHub Desktop.
Which option
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Option 1 | |
| public function onTodoWasMarkedAsDone(TodoWasMarkedAsDone $event) | |
| { | |
| $this->connection->update( | |
| Table::TODO, | |
| [ | |
| 'status' => $event->newStatus()->toString() | |
| ], | |
| [ | |
| 'id' => $event->todoId()->toString() | |
| ] | |
| ); | |
| } | |
| // Option 2 | |
| public function onTodoWasMarkedAsDone(TodoWasMarkedAsDone $event) | |
| { | |
| $this->connection->update( | |
| Table::TODO, | |
| ['status' => $event->newStatus()->toString()], | |
| ['id' => $event->todoId()->toString()] | |
| ); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment