mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Fixed changelog indentation
This commit is contained in:
parent
69f16c605c
commit
d56c756074
@ -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,
|
||||
];
|
||||
}
|
||||
```
|
||||
|
Loading…
Reference in New Issue
Block a user