/**
  * Define a polymorphic, inverse one-to-one or many relationship.
  *
  * @param string $name
  * @param string $type
  * @param string $id
  * @return \Illuminate\Database\Eloquent\Relations\MorphTo 
  * @static 
  */
 public static function morphTo($name = null, $type = null, $id = null)
 {
     //Method inherited from \Illuminate\Database\Eloquent\Model
     return \Webpatser\Countries\Countries::morphTo($name, $type, $id);
 }