Home
last modified time | relevance | path

Searched refs:iniSettings (Results 1 – 6 of 6) sorted by last modified time

/plugin/findologicxmlexport/vendor/sebastian/global-state/src/
H A DCodeExporter.php42 public function iniSettings(Snapshot $snapshot) function in SebastianBergmann\\GlobalState\\CodeExporter
46 foreach ($snapshot->iniSettings() as $key => $value) {
H A DSnapshot.php49 private $iniSettings = array(); variable in SebastianBergmann\\GlobalState\\Snapshot
129 $this->iniSettings = ini_get_all(null, false);
186 public function iniSettings() function in SebastianBergmann\\GlobalState\\Snapshot
188 return $this->iniSettings;
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/
H A DTestCase.php180 private $iniSettings = []; variable in PHPUnit_Framework_TestCase
785 $iniSettings = PHPUnit_Util_GlobalState::getIniSettingsAsString();
794 $iniSettings = '';
852 'iniSettings' => $iniSettings,
998 foreach ($this->iniSettings as $varName => $oldValue) {
1002 $this->iniSettings = [];
1377 $this->iniSettings[$varName] = $currentValue;
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/PHP/Template/
H A DTestCaseMethod.tpl.dist11 {iniSettings}
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/
H A DGlobalState.php87 $iniSettings = ini_get_all(null, false);
89 foreach ($iniSettings as $key => $value) {
/plugin/findologicxmlexport/vendor/sebastian/global-state/tests/
H A DSnapshotTest.php98 $iniSettings = $snapshot->iniSettings();
100 $this->assertArrayHasKey('date.timezone', $iniSettings);
101 $this->assertEquals('Etc/UTC', $iniSettings['date.timezone']);