/**
  * Check ISBN Code
  *
  * @param string $code ISBN Code to validate
  * @param array &$isbn Reference Array to fill with ISBN info
  * @return Returns TRUE if the ISBN validates, otherwise FALSE
  */
 public static function checkIsbn($code, &$isbn)
 {
     return IsbnValidator\IsbnValidator::validate($code, $isbn);
 }