Revert unnecessary change

This commit is contained in:
Manuel Thalmann 2021-05-14 15:31:29 +02:00 committed by Dan Hensby
parent b0cdff3619
commit e37188da4c
No known key found for this signature in database
GPG Key ID: F76D6B5FE0626A99

View File

@ -161,7 +161,7 @@ of `DataObject`. Adding this extension to children of the base class will have u
You can use the `owns` static private property on a DataObject to specify which relationships are ownership relationships. The `owns` property should be defined on the _owner_ DataObject.
For example, let's say you have a `MyPage` page type that displays banners containing an image. Each `MyPage` own many `Banners`, which in turn own an `Image`.
For example, let's say you have a `MyPage` page type that displays banners containing an image. Each `MyPage` owns many `Banners`, which in turn owns an `Image`.
```php