Update 04_Data_Types_and_Casting.md

Fixed missing closing single-quote in Car class example.
This commit is contained in:
Joe Chenevey 2019-01-15 10:50:37 -05:00 committed by GitHub
parent e00570f8b2
commit 87cc52f3e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ class Car extends DataObject
private static $db = [
'Wheels' => 'Int(4)',
'Condition' => 'Enum(array("New","Fair","Junk"), "New")',
'Make' => 'Varchar(["default" => "Honda"]),
'Make' => 'Varchar(["default" => "Honda"])',
);
}
```