YII2: Установка значений по умолчанию для всех атрибутов модели

$customer = new Customer();
$customer->loadDefaultValues();
// $customer->xyz will be assigned the default value declared when defining the "xyz" column
Wicked Worm