Skip to content

Instantly share code, notes, and snippets.

@mathiasverraes
Last active December 10, 2015 18:58
Show Gist options
  • Save mathiasverraes/4477938 to your computer and use it in GitHub Desktop.
Save mathiasverraes/4477938 to your computer and use it in GitHub Desktop.
<?php
class Foo
{
private function __construct(){}
public static function create($bar)
{
$instance = new static;
$instance->bar = $bar;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment