@@ -66,7 +66,7 @@ |
||
| 66 | 66 | |
| 67 | 67 | if ($indexExists) { |
| 68 | 68 | // Get index stats |
| 69 | - $indexStats = $this->client->request($this->indexName . '/_stats', 'GET'); |
|
| 69 | + $indexStats = $this->client->request($this->indexName.'/_stats', 'GET'); |
|
| 70 | 70 | $statsData = $indexStats->getData(); |
| 71 | 71 | |
| 72 | 72 | if (isset($statsData['_all']['total']['docs'])) { |
@@ -74,7 +74,7 @@ |
||
| 74 | 74 | |
| 75 | 75 | // Test write permission with a small test object |
| 76 | 76 | try { |
| 77 | - $testKey = 'health-check/' . uniqid() . '.txt'; |
|
| 77 | + $testKey = 'health-check/'.uniqid().'.txt'; |
|
| 78 | 78 | $this->s3Client->putObject([ |
| 79 | 79 | 'Bucket' => $this->bucketName, |
| 80 | 80 | 'Key' => $testKey, |
@@ -40,8 +40,8 @@ |
||
| 40 | 40 | |
| 41 | 41 | try { |
| 42 | 42 | // Test cache operations |
| 43 | - $testKey = 'health_check_' . uniqid(); |
|
| 44 | - $testValue = 'test_' . time(); |
|
| 43 | + $testKey = 'health_check_'.uniqid(); |
|
| 44 | + $testValue = 'test_'.time(); |
|
| 45 | 45 | |
| 46 | 46 | // Test write |
| 47 | 47 | $cacheItem = $this->cache->getItem($testKey); |
@@ -137,7 +137,7 @@ |
||
| 137 | 137 | private function getApplicationVersion(): string |
| 138 | 138 | { |
| 139 | 139 | // Try to read from composer.json or return default |
| 140 | - $composerPath = dirname(__DIR__, 6) . '/composer.json'; |
|
| 140 | + $composerPath = dirname(__DIR__, 6).'/composer.json'; |
|
| 141 | 141 | |
| 142 | 142 | if (file_exists($composerPath)) { |
| 143 | 143 | $composer = json_decode(file_get_contents($composerPath), true); |