Which three lines are printed?
php
<?php
enum Status: string
{
case Draft = 'draft';
case Published = 'published';
}
echo Status::from('draft')->name, PHP_EOL;
var_export(Status::tryFrom('Draft'));
echo PHP_EOL, json_encode(Status::Published), PHP_EOL;