Return the current project configuration. Returns a clone of the [`Config`](config::Config) loaded from `.phpantom.toml` (or the default config when the file is missing).
(&self)
| 1153 | /// Returns a clone of the [`Config`](config::Config) loaded from |
| 1154 | /// `.phpantom.toml` (or the default config when the file is missing). |
| 1155 | pub fn config(&self) -> config::Config { |
| 1156 | self.config.lock().clone() |
| 1157 | } |
| 1158 | |
| 1159 | /// Replace the current configuration. |
| 1160 | /// |