- Fixed a bug occuring within Timeout

This commit is contained in:
Dave Mc Nicoll 2024-02-16 14:38:18 -05:00
parent aba0ec3458
commit 56ca1e2071
5 changed files with 5 additions and 0 deletions

View File

@ -9,5 +9,6 @@ class Collection extends ApiAction {
public function __construct(
public string $url,
public MethodEnum $method = MethodEnum::Get,
public int $timeout = 5,
) {}
}

View File

@ -9,5 +9,6 @@ class Create extends ApiAction {
public function __construct(
public string $url,
public MethodEnum $method = MethodEnum::Post,
public int $timeout = 5,
) {}
}

View File

@ -9,5 +9,6 @@ class Delete extends ApiAction {
public function __construct(
public string $url,
public MethodEnum $method = MethodEnum::Delete,
public int $timeout = 5,
) {}
}

View File

@ -9,5 +9,6 @@ class Read extends ApiAction {
public function __construct(
public string $url,
public MethodEnum $method = MethodEnum::Get,
public int $timeout = 5,
) {}
}

View File

@ -9,5 +9,6 @@ class Update extends ApiAction {
public function __construct(
public string $url,
public MethodEnum $method = MethodEnum::Patch,
public int $timeout = 5,
) {}
}