Created
November 22, 2013 09:41
-
-
Save jocoonopa/7597400 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace com\rsumilang\common; | |
class Object { | |
// ... code ... | |
} | |
?> | |
<?php | |
class String extends com\rsumilang\common\Object { | |
// ... code ... | |
} | |
?> | |
<?php | |
namespace com\rsumilang\common; | |
class String extends Object { | |
// ... code ... | |
} | |
?> | |
<?php | |
namespace com\rsumilang\util; | |
use com\rsumlang\common as Common; | |
class String extends Common\Object { | |
// ... code ... | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment