Skip to content

Instantly share code, notes, and snippets.

@ralt
Created February 20, 2015 18:06
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 ralt/c6b5e06d628148980a9d to your computer and use it in GitHub Desktop.
Save ralt/c6b5e06d628148980a9d to your computer and use it in GitHub Desktop.
<?php
declare(strict_type=1);
require_once('fileB.php');
function foo(int $bar) {
bar($bar);
}
<?php
function bar(string $baz) {
echo $baz;
}
<?php
require_once('fileA.php');
foo(1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment