V
V
vrazbros2019-06-20 16:48:46
Laravel
vrazbros, 2019-06-20 16:48:46

How to set laravel model property through annotations?

было
class UserInfo 
{
       /**
     *
     * @var string
     * @Column(type="string", length=4, nullable=false)
     */
    public $discipline = Discipline::ENG;
....
}
сейчас переписываю  на другой фреймворк через аннотации

теперь работает так, выглядит более читаемо 

/**
 * Class UserInfo
....
 * @property string      $Discipline
....
 */
class StudentInfo extends MysqlApiModel
{
....
}

как задать длину поля модели и значение по умолчанию через аннотации ?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
J
JhaoDa, 2019-06-20
@JhaoDa

No way.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question