refac: General create 함수명 변경

This commit is contained in:
2023-08-01 16:28:29 +00:00
parent 29273d7a8b
commit 55fca2337d
68 changed files with 87 additions and 89 deletions
+3 -3
View File
@@ -116,7 +116,7 @@ abstract class AuctionBasicResource extends Auction
} else if ($this->info->hostGeneralID == 0) {
$auctionHost = $this->genDummy();
} else {
$auctionHost = General::createGeneralObjFromDB($this->info->hostGeneralID);
$auctionHost = General::createObjFromDB($this->info->hostGeneralID);
}
$hostRes = static::$hostRes;
@@ -164,7 +164,7 @@ abstract class AuctionBasicResource extends Auction
} else if ($this->info->hostGeneralID == 0) {
$auctionHost = $this->genDummy();
} else {
$auctionHost = General::createGeneralObjFromDB($this->info->hostGeneralID);
$auctionHost = General::createObjFromDB($this->info->hostGeneralID);
}
$highestBid = $this->getHighestBid();
@@ -175,7 +175,7 @@ abstract class AuctionBasicResource extends Auction
if ($this->general->getID() === $highestBid->generalID) {
$bidder = $this->general;
} else {
$bidder = General::createGeneralObjFromDB($highestBid->generalID);
$bidder = General::createObjFromDB($highestBid->generalID);
}
$hostRes = static::$hostRes;