Guest User

Untitled

a guest
Nov 18th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <?php
  2. /**
  3. * Description of LogHelper
  4. *
  5. * @author jei
  6. */
  7. class Application_Model_LogHelper {
  8.  
  9. public static function saveLog($entityId, $action, $userId){
  10.  
  11. $action = new \Entities\Action;
  12. $action->setEntityId($entityId);
  13. $action->setAction($action);
  14. //Como le seteo el user_id en la entidad Audit??
  15.  
  16. }
  17.  
  18. }
  19. ?>
Add Comment
Please, Sign In to add comment