This repository has been archived by the owner on Oct 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(Reviews): add review delete request
Closes #134
- Loading branch information
Jens Schulze
committed
Aug 3, 2015
1 parent
70bb257
commit 2c6493e
Showing
1 changed file
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<?php | ||
/** | ||
* @author @ct-jensschulze <jens.schulze@commercetools.de> | ||
*/ | ||
|
||
namespace Commercetools\Core\Request\Reviews; | ||
|
||
|
||
use Commercetools\Core\Model\Common\Context; | ||
use Commercetools\Core\Request\AbstractDeleteRequest; | ||
|
||
/** | ||
* @package Commercetools\Core\Request\Reviews | ||
*/ | ||
class ReviewDeleteRequest extends AbstractDeleteRequest | ||
{ | ||
protected $resultClass = '\Commercetools\Core\Model\Review\Review'; | ||
|
||
/** | ||
* @param string $id | ||
* @param int $version | ||
* @param Context $context | ||
*/ | ||
public function __construct($id, $version, Context $context = null) | ||
{ | ||
parent::__construct(ReviewsEndpoint::endpoint(), $id, $version, $context); | ||
} | ||
|
||
/** | ||
* @param string $id | ||
* @param int $version | ||
* @param Context $context | ||
* @return static | ||
*/ | ||
public static function ofIdAndVersion($id, $version, Context $context = null) | ||
{ | ||
return new static($id, $version, $context); | ||
} | ||
} |