1
0
mirror of https://github.com/danog/amp.git synced 2025-01-22 05:11:42 +01:00

Remove missed emit() default value

This commit is contained in:
Aaron Piotrowski 2016-07-20 08:52:19 -05:00
parent 8e794ba1d7
commit 7adc7d8452

View File

@ -67,7 +67,7 @@ try {
*
* @return \Interop\Async\Awaitable
*/
public function emit($value = null) {
public function emit($value) {
$emit = $this->emit;
return $emit($value);
}