Fixed changelog indentation

This commit is contained in:
Ingo Schommer 2017-10-25 07:24:57 +13:00
parent 69f16c605c
commit d56c756074

View File

@ -84,13 +84,13 @@ Backup your existing `composer.json` and overwrite it with the following content
```json
{
"name": "myvendor/myproject",
"require": {
"silverstripe/recipe-plugin": ">=0.1@dev <1.0",
"silverstripe/recipe-cms": "~1.1"
},
"prefer-stable": true,
"minimum-stability": "dev"
"name": "myvendor/myproject",
"require": {
"silverstripe/recipe-plugin": ">=0.1@dev <1.0",
"silverstripe/recipe-cms": "~1.1"
},
"prefer-stable": true,
"minimum-stability": "dev"
}
```
@ -325,8 +325,8 @@ as demonstrated below.
class MyClass extends DataObject
{
private static $has_one = [
- 'Author' => 'Member',
+ 'Author' => Member::class,
- 'Author' => 'Member',
+ 'Author' => Member::class,
];
}
```