Skip to content

Instantly share code, notes, and snippets.

@ceeram
Last active August 29, 2015 14:11
Show Gist options
  • Save ceeram/26628ff9e753be4717e8 to your computer and use it in GitHub Desktop.
Save ceeram/26628ff9e753be4717e8 to your computer and use it in GitHub Desktop.
<?php
//original
namespace A;
use B {
class D
{
//coe here
}
}
?>
<?php
//option 1
namespace A;
use B {
class D
{
//coe here
}
}
<?php
//option 2
namespace A;
use B
{
class D
{
//coe here
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment