Skip to content

Instantly share code, notes, and snippets.

@michael34435
Last active October 25, 2016 18:43
Show Gist options
  • Save michael34435/0f13f38aca3f06f73f7c60b0627bff6c to your computer and use it in GitHub Desktop.
Save michael34435/0f13f38aca3f06f73f7c60b0627bff6c to your computer and use it in GitHub Desktop.
<?php
namespace Foo;
use Foo\ClassB;
class ClassA
{
}
<?php
namespace Foo;
class ClassB
{
public function bar()
{
$classA = new ClassA();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment