1
0
Fork 0
mirror of synced 2024-07-03 05:31:38 +12:00

Remove descriptions from response models

This commit is contained in:
Jake Barnby 2024-02-06 02:35:15 +13:00
parent 987b02083c
commit 47dec4e187
No known key found for this signature in database
GPG key ID: C437A8CC85B96E9C
2 changed files with 0 additions and 14 deletions

View file

@ -99,13 +99,6 @@ class Message extends Model
'description' => 'Status of delivery.',
'default' => 'processing',
'example' => 'Message status can be one of the following: processing, sent, cancelled, failed.',
])
->addRule('description', [
'type' => self::TYPE_STRING,
'description' => 'Message description.',
'required' => false,
'default' => '',
'example' => 'Welcome Email.',
]);
}

View file

@ -39,13 +39,6 @@ class Topic extends Model
'description' => 'Total count of subscribers subscribed to topic.',
'default' => 0,
'example' => 100,
])
->addRule('description', [
'type' => self::TYPE_STRING,
'description' => 'Description of the topic.',
'default' => '',
'required' => false,
'example' => 'All events related messages will be sent to this topic.',
]);
}