Skip to content

Instantly share code, notes, and snippets.

@kanian
Last active March 20, 2019 17:53
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 kanian/3437f1d83f8faad5ec678d980984bf4a to your computer and use it in GitHub Desktop.
Save kanian/3437f1d83f8faad5ec678d980984bf4a to your computer and use it in GitHub Desktop.
Proxy Generated
<?php
namespace Assoa\Yo;
class Yo_Proxy_02e38a51_a0bc_4c1a_b9ee_77a6fceea0da extends Yo
{
function __construct()
{
$args = func_get_args();
$this->{'subjectInstance'} = new Yo(...$args);
}
function hein(string $param1)
{
$args = func_get_args();
$this->{'subjectInstance'}->hein(...$args);
}
function what()
{
$args = func_get_args();
return $this->{'subjectInstance'}->what(...$args);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment