Created
January 30, 2013 19:58
-
-
Save phalcon/4676304 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 | |
| class Account { | |
| public function save($data=null) | |
| { | |
| $entity = new Entity(); | |
| $entity->name = 'Account'; | |
| $this->entity = $entity; | |
| return parent::save($data); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment