summaryrefslogtreecommitdiff
path: root/include/ini.h
diff options
context:
space:
mode:
authorvalmat <ufabiz@gmail.com>2014-04-10 11:09:22 +0600
committervalmat <ufabiz@gmail.com>2014-04-10 11:09:22 +0600
commit1a6b709b8f732ea8a91b07a74f64928e0484b1f6 (patch)
tree2a9572b6b00293abc84ab947f6cbb952644ecaed /include/ini.h
parent21ba3f0aae94206457327552666d75dd2cf0a8f2 (diff)
Php::Ini::Place::System --> Php::Ini::System
Proposed here: https://github.com/CopernicaMarketingSoftware/PHP-CPP/issues/64#issuecomment-39838981
Diffstat (limited to 'include/ini.h')
-rw-r--r--include/ini.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/ini.h b/include/ini.h
index b881cfe..2223bee 100644
--- a/include/ini.h
+++ b/include/ini.h
@@ -33,14 +33,13 @@ namespace Php {
* Usually you would choose where the setting can be changed based on how it is used. For example if you want to access
* the setting during RINIT stage then you would want PHP_INI_PERDIR because the setting would have no use after RINIT.
*/
- enum class Place : int {
+ enum Place : int {
User = (1<<0), // ZEND_INI_USER (1<<0)
Perdir = (1<<1), // ZEND_INI_PERDIR (1<<1)
System = (1<<2), // ZEND_INI_SYSTEM (1<<2)
All = (1<<0) | (1<<1) | (1<<2) // ZEND_INI_ALL (ZEND_INI_USER|ZEND_INI_PERDIR|ZEND_INI_SYSTEM)
};
-
/**
* default constructors
*/