Change from "Team" to Team::class

To be consistent with the rest of the doc
This commit is contained in:
Tristan 2019-11-28 11:34:41 +13:00 committed by GitHub
parent 51a12d1de8
commit aad33e36d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ use SilverStripe\ORM\DataObject;
class Player extends DataObject
{
private static $has_one = [
"Team" => "Team",
"Team" => Team::class,
];
}