summaryrefslogtreecommitdiff
path: root/tests/integration/ApiTest.php
diff options
context:
space:
mode:
authorAndrew Dolgov <fox@fakecake.org>2024-12-16 06:29:28 +0000
committerAndrew Dolgov <fox@fakecake.org>2024-12-16 06:29:28 +0000
commite990a3c00fb630465996a29d60d9acc7687c8979 (patch)
tree6a1071eeb3e1a618ac3fe94bcf8363c6fbbc0bb5 /tests/integration/ApiTest.php
parentd1c0ba5944e225165a5761e3d9a6620d27aca263 (diff)
parent6f8f1b30d508dc3d2c3a067ca7fe2d161963ef5f (diff)
Merge branch 'feature/php-misc' into 'master'
More native typing, use some new PHP stuff See merge request tt-rss/tt-rss!88
Diffstat (limited to 'tests/integration/ApiTest.php')
-rw-r--r--tests/integration/ApiTest.php8
1 files changed, 2 insertions, 6 deletions
diff --git a/tests/integration/ApiTest.php b/tests/integration/ApiTest.php
index 4b47ec4b0..65c3828f6 100644
--- a/tests/integration/ApiTest.php
+++ b/tests/integration/ApiTest.php
@@ -3,12 +3,8 @@ use PHPUnit\Framework\TestCase;
/** @group integration */
final class ApiTest extends TestCase {
-
- /** @var string */
- private $api_url;
-
- /** @var string */
- private $sid;
+ private string $api_url;
+ private string $sid;
function __construct() {
$this->api_url = getenv('API_URL');