1
0
Fork 0
mirror of synced 2025-04-04 14:23:40 +03:00

Fix code style

This commit is contained in:
Uryvskiy Dima 2024-02-08 12:44:49 +03:00
parent 1f52b031e6
commit a14476bd4d
4 changed files with 52 additions and 52 deletions

View file

@ -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

View file

@ -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

View file

@ -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;

View file

@ -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;