api-erstellen #1

Merged
TorstenHettstedt merged 52 commits from api-erstellen into master 2021-04-07 13:00:46 +02:00
Showing only changes of commit 9a542c9108 - Show all commits
@@ -6,16 +6,15 @@ use Slim\Exception\HttpSpecializedException;
class HttpConflictRequestException extends HttpSpecializedException class HttpConflictRequestException extends HttpSpecializedException
{ {
/** /** @var int */
TorstenHettstedt marked this conversation as resolved Outdated
Outdated
Review

Kann auf eine Zeile

Kann auf eine Zeile
* @var int
*/
protected $code = 409; protected $code = 409;
/** /** @var string */
* @var string
*/
protected $message = 'Conflict.'; protected $message = 'Conflict.';
TorstenHettstedt marked this conversation as resolved
Review

Kann auf eine Zeile.

Kann auf eine Zeile.
/** @var string */
protected $title = '409 Conflict'; protected $title = '409 Conflict';
/** @var string */
protected $description = 'The 409 (Conflict) status code indicates that the request could not be completed due to a conflict with the current state of the target resource.'; protected $description = 'The 409 (Conflict) status code indicates that the request could not be completed due to a conflict with the current state of the target resource.';
TorstenHettstedt marked this conversation as resolved
Review

Typen erweitern.

Typen erweitern.
} }