Skip to content

Instantly share code, notes, and snippets.

@tanakahisateru
Created May 31, 2012 08:31
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 tanakahisateru/2841918 to your computer and use it in GitHub Desktop.
Save tanakahisateru/2841918 to your computer and use it in GitHub Desktop.
名前空間とかモジュール名の上手な使い方
<?php
namespace My\Awesome\Product;
use Your\Prototype\Product\App as BaseApp;
class App extends BaseApp {
// カスタマイズ
}
# in my.awesome.product
from your.prototype.product import App as BaseApp
class App(BaseApp):
# カスタマイズ
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment