Skip to content

Instantly share code, notes, and snippets.

@drgomesp
Created March 30, 2016 17:19
Show Gist options
  • Save drgomesp/5dc0bfa846acfffbf50a481d2f230f5f to your computer and use it in GitHub Desktop.
Save drgomesp/5dc0bfa846acfffbf50a481d2f230f5f to your computer and use it in GitHub Desktop.
PHP 7 Snippets
<?php
function sum(int $a, int $b) {
return $a + $b;
}
function sum(int $a, int $b): int {
return $a + $b;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment