Advertisement
Guest User

Untitled

a guest
Aug 18th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. <?php declare(strict_types=1);
  2.  
  3. require __DIR__.'/vendor/autoload.php';
  4.  
  5. lambda(function (array $event) {
  6. return 'Hello ' . ($event['name'] ?? 'world');
  7. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement