Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/Support/Facades/Response.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@

/**
* @method static \Apiato\Http\Response create(mixed $data = null, callable|TransformerAbstract|null|string $transformer = null, SerializerAbstract|null|string $serializer = null)
* @method static JsonResponse ok()
* @method static JsonResponse created()
* @method static JsonResponse noContent()
* @method static JsonResponse accepted()
* @method static JsonResponse ok(mixed $data = null, array $headers = [], int $options = 0)
* @method static JsonResponse created(mixed $data = null, array $headers = [], int $options = 0)
* @method static JsonResponse noContent(array $headers = [], int $options = 0)
* @method static JsonResponse accepted(mixed $data = null, array $headers = [], int $options = 0)
* @method static JsonResponse respond(callable|int $statusCode = 200, callable|array $headers = [], callable|int $options = 0)
* @method static string|callable|TransformerAbstract|null getTransformer()
* @method static void macro(string $name, object|callable $macro)
Expand Down