for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Created by PhpStorm.
* User: User
* Date: 4/21/2019
* Time: 10:51 PM
*/
namespace crocodicstudio\crudbooster\types\number;
use crocodicstudio\crudbooster\models\ColumnModel;
class NumberModel extends ColumnModel
{
private $max;
private $min;
private $step;
* @return mixed
public function getStep()
return $this->step;
}
* @param mixed $step
public function setStep($step): void
$this->step = $step;
public function getMax()
return $this->max;
* @param mixed $max
public function setMax($max): void
$this->max = $max;
public function getMin()
return $this->min;
* @param mixed $min
public function setMin($min): void
$this->min = $min;