Skip to content

Instantly share code, notes, and snippets.

@barnslig
Created October 9, 2020 18:36
Show Gist options
  • Save barnslig/6b3e219b56f6bfdc96ae64490c9abe11 to your computer and use it in GitHub Desktop.
Save barnslig/6b3e219b56f6bfdc96ae64490c9abe11 to your computer and use it in GitHub Desktop.
<?php
namespace Barnslig\Test;
class TestBla
{
public function test(): string
{
return "foobar";
}
}
/** @var string */
$klass = TestBla::class;
$testBla = new $klass();
echo $testBla->test(); // yields "foobar"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment