Commit: a6496e7bd176a49c664456e6aea01e47adb70ce4

Author: Nate Abele | Date: 2009-10-25 02:53:29 -0400
Stubbing out initial classes.
diff --git a/config/.DS_Store b/config/.DS_Store new file mode 100644 index 0000000..baab20d Binary files /dev/null and b/config/.DS_Store differ diff --git a/config/bootstrap.php b/config/bootstrap.php new file mode 100644 index 0000000..544f070 --- /dev/null +++ b/config/bootstrap.php @@ -0,0 +1,9 @@ +<?php +/** + * Lithium: the most rad php framework + * + * @copyright Copyright 2009, Union of Rad, Inc. (http://union-of-rad.org) + * @license http://opensource.org/licenses/bsd-license.php The BSD License + */ +// Nothing to do here +?> \ No newline at end of file diff --git a/config/routes.php b/config/routes.php new file mode 100644 index 0000000..544f070 --- /dev/null +++ b/config/routes.php @@ -0,0 +1,9 @@ +<?php +/** + * Lithium: the most rad php framework + * + * @copyright Copyright 2009, Union of Rad, Inc. (http://union-of-rad.org) + * @license http://opensource.org/licenses/bsd-license.php The BSD License + */ +// Nothing to do here +?> \ No newline at end of file diff --git a/extensions/MagicalCreature.php b/extensions/MagicalCreature.php new file mode 100644 index 0000000..a8ce9cd --- /dev/null +++ b/extensions/MagicalCreature.php @@ -0,0 +1,14 @@ +<?php +/** + * Lithium: the most rad php framework + * + * @copyright Copyright 2009, Union of Rad, Inc. (http://union-of-rad.org) + * @license http://opensource.org/licenses/bsd-license.php The BSD License + */ + +namespace li3_ponies\extensions; + +abstract class MagicalCreature extends \lithium\core\Object { +} + +?> \ No newline at end of file diff --git a/extensions/Pony.php b/extensions/Pony.php new file mode 100644 index 0000000..8f430a5 --- /dev/null +++ b/extensions/Pony.php @@ -0,0 +1,14 @@ +<?php +/** + * Lithium: the most rad php framework + * + * @copyright Copyright 2009, Union of Rad, Inc. (http://union-of-rad.org) + * @license http://opensource.org/licenses/bsd-license.php The BSD License + */ + +namespace li3_ponies\extensions; + +class Pony extends \lithium\core\Object { +} + +?> \ No newline at end of file diff --git a/extensions/magical_creature/Unicorn.php b/extensions/magical_creature/Unicorn.php new file mode 100644 index 0000000..c38023f --- /dev/null +++ b/extensions/magical_creature/Unicorn.php @@ -0,0 +1,14 @@ +<?php +/** + * Lithium: the most rad php framework + * + * @copyright Copyright 2009, Union of Rad, Inc. (http://union-of-rad.org) + * @license http://opensource.org/licenses/bsd-license.php The BSD License + */ + +namespace li3_ponies\extensions\magical_creature; + +class Unicorn extends \li3_ponies\extensions\MagicalCreature { +} + +?> \ No newline at end of file