Skip to content

Instantly share code, notes, and snippets.

@jocoonopa
Created November 22, 2013 09:41
Show Gist options
  • Save jocoonopa/7597400 to your computer and use it in GitHub Desktop.
Save jocoonopa/7597400 to your computer and use it in GitHub Desktop.
<?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