Fix code style
This commit is contained in:
parent
1f52b031e6
commit
a14476bd4d
4 changed files with 52 additions and 52 deletions
|
@ -3,7 +3,7 @@
|
|||
/**
|
||||
* PHP version 7.3
|
||||
*
|
||||
* @category AbstractComment
|
||||
* @category BaseComment
|
||||
* @package RetailCrm\Api\Model\Entity\Tasks
|
||||
*/
|
||||
|
||||
|
@ -12,12 +12,12 @@ namespace RetailCrm\Api\Model\Entity\Tasks;
|
|||
use RetailCrm\Api\Component\Serializer\Annotation as JMS;
|
||||
|
||||
/**
|
||||
* Class AbstractComment
|
||||
* Class BaseComment
|
||||
*
|
||||
* @category AbstractComment
|
||||
* @category BaseComment
|
||||
* @package RetailCrm\Api\Model\Entity\Tasks
|
||||
*/
|
||||
class AbstractComment
|
||||
class BaseComment
|
||||
{
|
||||
/**
|
||||
* @var int
|
|
@ -18,7 +18,7 @@ use RetailCrm\Api\Component\Serializer\Annotation as JMS;
|
|||
* @category TaskComment
|
||||
* @package RetailCrm\Api\Model\Entity\Tasks
|
||||
*/
|
||||
class TaskComment extends AbstractComment
|
||||
class TaskComment extends BaseComment
|
||||
{
|
||||
/**
|
||||
* @var int
|
||||
|
|
|
@ -101,9 +101,9 @@ class TaskHistory
|
|||
public $task;
|
||||
|
||||
/**
|
||||
* @var \RetailCrm\Api\Model\Entity\Tasks\AbstractComment
|
||||
* @var \RetailCrm\Api\Model\Entity\Tasks\BaseComment
|
||||
*
|
||||
* @JMS\Type("RetailCrm\Api\Model\Entity\Tasks\AbstractComment")
|
||||
* @JMS\Type("RetailCrm\Api\Model\Entity\Tasks\BaseComment")
|
||||
* @JMS\SerializedName("comment")
|
||||
*/
|
||||
public $comment;
|
||||
|
|
|
@ -183,31 +183,31 @@ EOF;
|
|||
{
|
||||
$json = <<<'EOF'
|
||||
{
|
||||
"success":true,
|
||||
"history":[
|
||||
{
|
||||
"id": 1,
|
||||
"createdAt": "2023-03-22 19:00:29",
|
||||
"created": true,
|
||||
"source": "rule",
|
||||
"field": "id",
|
||||
"oldValue": null,
|
||||
"newValue": 1,
|
||||
"task": {
|
||||
"id": 1,
|
||||
"text": "",
|
||||
"commentary": "",
|
||||
"createdAt": "2023-03-22 19:00:29",
|
||||
"complete": false,
|
||||
"performer": 2,
|
||||
"performerType": "user",
|
||||
"customer":{
|
||||
"type": "customer",
|
||||
"id": 1
|
||||
}
|
||||
}
|
||||
"success": true,
|
||||
"history": [
|
||||
{
|
||||
"id": 1,
|
||||
"createdAt": "2023-03-22 19:00:29",
|
||||
"created": true,
|
||||
"source": "rule",
|
||||
"field": "id",
|
||||
"oldValue": null,
|
||||
"newValue": 1,
|
||||
"task": {
|
||||
"id": 1,
|
||||
"text": "",
|
||||
"commentary": "",
|
||||
"createdAt": "2023-03-22 19:00:29",
|
||||
"complete": false,
|
||||
"performer": 2,
|
||||
"performerType": "user",
|
||||
"customer": {
|
||||
"type": "customer",
|
||||
"id": 1
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
EOF;
|
||||
|
||||
|
@ -233,29 +233,29 @@ EOF;
|
|||
{
|
||||
$json = <<<'EOF'
|
||||
{
|
||||
"success": true,
|
||||
"pagination": {
|
||||
"success": true,
|
||||
"pagination": {
|
||||
"limit": 20,
|
||||
"totalCount": 4,
|
||||
"currentPage": 1,
|
||||
"totalPageCount": 1
|
||||
"totalCount": 4,
|
||||
"currentPage": 1,
|
||||
"totalPageCount": 1
|
||||
},
|
||||
"comments": [
|
||||
{
|
||||
"id": 1150,
|
||||
"creator": 1,
|
||||
"text": "Тест 2",
|
||||
"createdAt": "2024-02-05 16:58:23",
|
||||
"updatedAt": "2024-02-05 16:58:23"
|
||||
},
|
||||
"comments": [
|
||||
{
|
||||
"id": 1150,
|
||||
"creator": 1,
|
||||
"text": "Тест 2",
|
||||
"createdAt": "2024-02-05 16:58:23",
|
||||
"updatedAt": "2024-02-05 16:58:23"
|
||||
},
|
||||
{
|
||||
"id": 1149,
|
||||
"creator": 1,
|
||||
"text": "Тест 1",
|
||||
"createdAt": "2024-02-05 16:58:19",
|
||||
"updatedAt": "2024-02-05 16:58:19"
|
||||
}
|
||||
]
|
||||
{
|
||||
"id": 1149,
|
||||
"creator": 1,
|
||||
"text": "Тест 1",
|
||||
"createdAt": "2024-02-05 16:58:19",
|
||||
"updatedAt": "2024-02-05 16:58:19"
|
||||
}
|
||||
]
|
||||
}
|
||||
EOF;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue