smallCamelCaseに変更
This commit is contained in:
@@ -7,13 +7,13 @@ Favorite::Favorite(std::shared_ptr<CocoaTweet::OAuth::OAuth1> _oauth) {
|
||||
oauth_ = _oauth;
|
||||
}
|
||||
|
||||
CocoaTweet::API::Model::Tweet Favorite::Create(const std::string& _id) const {
|
||||
CocoaTweet::API::Model::Tweet Favorite::create(const std::string& _id) const {
|
||||
CocoaTweet::API::Favorites::Create create;
|
||||
create.id(_id);
|
||||
return create.process(oauth_);
|
||||
}
|
||||
|
||||
CocoaTweet::API::Model::Tweet Favorite::Destroy(const std::string& _id) const {
|
||||
CocoaTweet::API::Model::Tweet Favorite::destroy(const std::string& _id) const {
|
||||
CocoaTweet::API::Favorites::Destroy destroy;
|
||||
destroy.id(_id);
|
||||
return destroy.process(oauth_);
|
||||
|
||||
Reference in New Issue
Block a user