| 1 | <?php |
||
| 7 | trait ScaleTrait |
||
| 8 | { |
||
| 9 | use OptionAccessorsTrait; |
||
| 10 | |||
| 11 | /** |
||
| 12 | * @param int $scale |
||
| 13 | * @return $this |
||
| 14 | * @link http://symfony.com/doc/current/reference/forms/types/integer.html#scale |
||
| 15 | */ |
||
| 16 | public function setScale($scale) |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @return int |
||
| 23 | */ |
||
| 24 | public function getScale() |
||
| 28 | } |
||
| 29 |