From 5e134355f404235ac12ffd6f33b35e9a68e4f899 Mon Sep 17 00:00:00 2001 From: Al Date: Thu, 26 Apr 2018 10:59:03 +1200 Subject: [PATCH] Adjust wording --- .../en/02_Developer_Guides/04_Configuration/00_Configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/02_Developer_Guides/04_Configuration/00_Configuration.md b/docs/en/02_Developer_Guides/04_Configuration/00_Configuration.md index 0e4b1e3db..1c0ab6e1e 100644 --- a/docs/en/02_Developer_Guides/04_Configuration/00_Configuration.md +++ b/docs/en/02_Developer_Guides/04_Configuration/00_Configuration.md @@ -60,7 +60,7 @@ Or through the `config()` object on the class. $config = $this->config()->get('property')'; ``` -If your class does not inherit from a SilverStripe class, you must apply the [Configurable](api:SilverStripe\Core\Config\Configurable) trait in order to access the `config()` object. +You may need to apply the [Configurable](api:SilverStripe\Core\Config\Configurable) trait in order to access the `config()` object. **mysite/code/MyOtherClass.php**