Advertisement
Guest User

Untitled

a guest
Dec 21st, 2012
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.49 KB | None | 0 0
  1. class ItemPatcher extends EntityPatcher {
  2.  
  3.     /**
  4.      * @since 0.4
  5.      *
  6.      * @param array $entityArray
  7.      * @param Entity $entityObject
  8.      */
  9.     protected function setSpecificObjectFields( array $entityArray, Entity &$entityObject ) {
  10.         if ( !( $entityObject instanceof Item ) ) {
  11.             // meh!
  12.         }
  13.     }
  14.  
  15.     /**
  16.      * @since 0.4
  17.      *
  18.      * @param array $entityArray
  19.      * @param Entity $entityObject
  20.      */
  21.     protected function setSpecificArrayFields( array &$entityArray, Entity $entityObject ) {
  22.        
  23.     }
  24.  
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement