| Total Complexity | 2 | 
| Total Lines | 20 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 5 | trait Decimals | ||
| 6 | { | ||
| 7 | /** | ||
| 8 | * Creates the specified Money Column. | ||
| 9 | * | ||
| 10 | * @return \Illuminate\Support\Fluent | ||
| 11 | */ | ||
| 12 | public function money($name) | ||
| 13 |     { | ||
| 14 |         return $this->decimal($name, $this->getConfig('money.total'), $this->getConfig('money.places')); | ||
| 15 | } | ||
| 16 | |||
| 17 | /** | ||
| 18 | * Creates the specified Percent Column. | ||
| 19 | * | ||
| 20 | * @return \Illuminate\Support\Fluent | ||
| 21 | */ | ||
| 22 | public function percent($name) | ||
| 25 | } | ||
| 26 | } |