```php // Disallow (empty($string)) ? $string = 'Blank' : $string = 'Filled'; // Allow $string = (empty($string)) ? 'Blank' : 'Filled'; ```