Skip to content

Instantly share code, notes, and snippets.

@zulus
Last active August 29, 2015 14:26
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 zulus/b07777b9ea3b2e71990a to your computer and use it in GitHub Desktop.
Save zulus/b07777b9ea3b2e71990a to your computer and use it in GitHub Desktop.
<?php
namespace Any\NS {
class MyClass {}
}
namespace My\NS {
use Any\NS\MyClass;
new MyClass();
}
namespace My\NS {
use Any\NS\MyClass; // in both namespaces is highlighted as unused, cmd+shift+o also remove it
do_nothing();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment