Skip to content

Instantly share code, notes, and snippets.

@phalcon
Created January 30, 2013 19:58
Show Gist options
  • Select an option

  • Save phalcon/4676304 to your computer and use it in GitHub Desktop.

Select an option

Save phalcon/4676304 to your computer and use it in GitHub Desktop.
<?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