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
|
```json
|
||||||
{
|
{
|
||||||
"name": "myvendor/myproject",
|
"name": "myvendor/myproject",
|
||||||
"require": {
|
"require": {
|
||||||
"silverstripe/recipe-plugin": ">=0.1@dev <1.0",
|
"silverstripe/recipe-plugin": ">=0.1@dev <1.0",
|
||||||
"silverstripe/recipe-cms": "~1.1"
|
"silverstripe/recipe-cms": "~1.1"
|
||||||
},
|
},
|
||||||
"prefer-stable": true,
|
"prefer-stable": true,
|
||||||
"minimum-stability": "dev"
|
"minimum-stability": "dev"
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -325,8 +325,8 @@ as demonstrated below.
|
|||||||
class MyClass extends DataObject
|
class MyClass extends DataObject
|
||||||
{
|
{
|
||||||
private static $has_one = [
|
private static $has_one = [
|
||||||
- 'Author' => 'Member',
|
- 'Author' => 'Member',
|
||||||
+ 'Author' => Member::class,
|
+ 'Author' => Member::class,
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
Loading…
Reference in New Issue
Block a user