Exemplo n.º 1
0
 /**
  * @deprecated
  * Given two beans and a property this method will
  * swap the values of the property in the beans.
  *
  * @param array  $beans    beans to swap property values of
  * @param string $property property whose value you want to swap
  *
  * @return void
  */
 public static function swap($beans, $property)
 {
     self::$associationManager->swap($beans, $property);
 }
 /**
  * @deprecated
  * Given two beans and a property this method will
  * swap the values of the property in the beans.
  *
  * @param array  $beans    beans to swap property values of
  * @param string $property property whose value you want to swap
  *
  * @return void
  */
 public function swap($beans, $property)
 {
     $this->associationManager->swap($beans, $property);
 }