Skip to content

Instantly share code, notes, and snippets.

@tarlepp
Created February 7, 2021 19:21
Show Gist options
  • Save tarlepp/014aab8693ab08fb0c357b3e24e64f5e to your computer and use it in GitHub Desktop.
Save tarlepp/014aab8693ab08fb0c357b3e24e64f5e to your computer and use it in GitHub Desktop.
<?php
class Foo {
public function __construct($a = 5) {
var_dump($a);
}
}
new Foo($argv[1]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment