Completed
Push — health-check ( b7ce12 )
by
unknown
43s
created
SWP/Bundle/CoreBundle/Service/HealthCheck/Checker/ElasticsearchChecker.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
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'])) {
Please login to merge, or discard this patch.
src/SWP/Bundle/CoreBundle/Service/HealthCheck/Checker/S3StorageChecker.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@
 block discarded – undo
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,
Please login to merge, or discard this patch.
src/SWP/Bundle/CoreBundle/Service/HealthCheck/Checker/MemcachedChecker.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,8 +40,8 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.
src/SWP/Bundle/CoreBundle/Service/HealthCheck/HealthCheckService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -137,7 +137,7 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.