/**
* Factory to return an abstraction class to get information about a model
*
* @param $model
*
* @return \Dweineratl\LaravelModelHelper\Driver\DocBlocDriver|\Dweineratl\LaravelModelHelper\Driver\DoctrineDriver|\Dweineratl\LaravelModelHelper\Driver\FillableDriver
* @throws \ReflectionException
*/
public static function create($model)
/**
* Instantiate a LaravelModelHelper driver and return an array of Dweineratl\LaravelModelHelper\Column objects
*
* @param $model
* @return array
* @throws \ReflectionException
*/
public static function getColumns($model)
/**
* Process the model and return an array of Dweineratl\LaravelModelHelper\Column objects
*
* @param \Illuminate\Database\Eloquent\model $model
*
* @return array
*/
public function getColumns(Eloquent $model);
/**
* Column constructor.
*
* @param $name Column Name
* @param $type Column Type
*/
public function __construct($name, $type)
/**
* Get the column name
*
* @return string
*/
public function getName()
/**
* Get the column type
*
* @return string
*/
public function getType()
/**
* Set the column name
*
* @param $name
*/
public function setName($name)
/**
* Set the column type
*
* @param $type
*/
public function setType($type)
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.