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.

Revisions

  1. tarlepp created this gist Feb 7, 2021.
    9 changes: 9 additions & 0 deletions foo.php
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,9 @@
    <?php

    class Foo {
    public function __construct($a = 5) {
    var_dump($a);
    }
    }

    new Foo($argv[1]);