We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c192fa9 commit 75710aaCopy full SHA for 75710aa
README.md
@@ -96,11 +96,10 @@ function balance($accountNumber)
96
return $value;
97
}
98
99
-$async = new Async();
100
-$async->await(balance(0))->then('var_export');
+Async::await(balance(0))->then('var_export');
101
```
102
103
-Now the code is clean and looks like synchronous, but runs asynchronously for better performance getting us
+Now the code is clean and looks synchronous, but runs asynchronously for better performance getting us
104
best of both worlds :)
105
106
For more examples and integration with the frameworks take a look at [examples folder](examples)
0 commit comments