Example #1
0
 /**
  * @inheritdoc
  */
 protected function normalizeUserAttributes($attributes)
 {
     if (!empty($attributes['birthday'])) {
         list($attributes['birth_day'], $attributes['birth_month'], $attributes['birth_year']) = $this->parseBirthday($attributes['birthday']);
     }
     return parent::normalizeUserAttributes($attributes);
 }