mirror of
https://github.com/silverstripe/silverstripe-testsession
synced 2024-10-22 14:06:00 +02:00
Merge branch '2.4' into 2
This commit is contained in:
commit
5c8070044c
@ -529,7 +529,10 @@ class TestSessionEnvironment
|
|||||||
public function getState()
|
public function getState()
|
||||||
{
|
{
|
||||||
$path = Director::getAbsFile($this->getFilePath());
|
$path = Director::getAbsFile($this->getFilePath());
|
||||||
return (file_exists($path ?? '')) ? json_decode(file_get_contents($path)) : new stdClass;
|
if (file_exists($path ?? '')) {
|
||||||
|
return json_decode(file_get_contents($path)) ?: new stdClass;
|
||||||
|
}
|
||||||
|
return new stdClass;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user