Skip to content

Instantly share code, notes, and snippets.

@jazzdan
Created April 25, 2015 15:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jazzdan/abb1ff9f20f0f87465e4 to your computer and use it in GitHub Desktop.
Save jazzdan/abb1ff9f20f0f87465e4 to your computer and use it in GitHub Desktop.
<?php
declare(strict_types=1);
function myLog(string $message): string {
return $message;
}
function add(int $a, int $b): int {
myLog($a + $b);
return $a + $b;
}
$result = add(1, 3);
echo $result;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment