Skip to content

Instantly share code, notes, and snippets.

Avatar
🌨️
Snowed under with projects so I may be slow to respond.

Andy Howells andyunleashed

🌨️
Snowed under with projects so I may be slow to respond.
View GitHub Profile
@andyunleashed
andyunleashed / ConvertsNumbers.php
Created March 31, 2017 16:48
A trait for converting numbers to and from integers/floats for display and storage.
View ConvertsNumbers.php
<?php
namespace App\Traits;
trait ConvertsNumbers {
public function isConvertable($key)
{
if(!isset($this->convertable)) {
return false;