We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ca0d1f commit d437da7Copy full SHA for d437da7
src/Models/Environment.php
@@ -683,6 +683,16 @@ public function getPHPVersion()
683
: null;
684
}
685
686
+ /**
687
+ * Gets the PHP runtime generation of this environment
688
+ *
689
+ * @return string
690
+ */
691
+ public function getPHPRuntimeGeneration()
692
+ {
693
+ return $this->settings('php_runtime_generation');
694
+ }
695
+
696
/**
697
* @return UpstreamStatus
698
*/
@@ -947,6 +957,7 @@ public function serialize()
947
957
'initialized' => $this->isInitialized(),
948
958
'connection_mode' => $this->get('connection_mode'),
949
959
'php_version' => $this->getPHPVersion(),
960
+ 'php_runtime_generation' => $this->getPHPRuntimeGeneration(),
950
961
];
951
962
952
963
0 commit comments