friendica/src/Factory
Philipp Holzer 92fb0a82ca
Dynamic config loading
- Move settings, defaults and dbstructure to directory 'static'
- Dynamic loading of config files (after the static loading)
- Filter out '-sample.config.php' and '-sample.ini.php' files
- Remove unnecessary ConfigFileManager
- Move ConfigFileLoader to Utils
- Add tests for multi-loading for INI, config and sample-filtering
2019-07-16 20:16:43 +02:00
..
CacheDriverFactory.php Support for APCu caching 2019-04-21 12:45:19 +02:00
ConfigFactory.php Dynamic config loading 2019-07-16 20:16:43 +02:00
DBFactory.php Splitting ConfigCache & PConfigCache 2019-07-12 22:53:37 +02:00
DependencyFactory.php Dynamic config loading 2019-07-16 20:16:43 +02:00
LoggerFactory.php Moving from DBA to Database 2019-06-24 09:36:07 +02:00
ProfilerFactory.php Splitting ConfigCache & PConfigCache 2019-07-12 22:53:37 +02:00
README.md Adding REAMDEs to directories 2019-03-22 22:56:57 -04:00

README.md

Friendica\Factory

This namespace contains Factories. A Factory is used to create specific objects based on its configuration.

See Factory Method

Use the classes inside this directory if you want to change the way how new objects should get created. Don't use the classes to change the behaviour of the concrete objects.