Skip to content

Instantly share code, notes, and snippets.

@cockok
Created May 28, 2012 06:33
Show Gist options
  • Save cockok/2817698 to your computer and use it in GitHub Desktop.
Save cockok/2817698 to your computer and use it in GitHub Desktop.
<?php
class Hoge
{
function __construct()
{
}
}
class Fuga extends Hoge
{
function __construct($foo)
{
parent::__construct();
}
}
new Fuga(null);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment