for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Alkoumi\LaravelArabicTafqeet\Helpers;
trait Validation
{
public function initValidation()
if(is_numeric($this->parsed_number))
return $this;
else
throw new \TypeError('The amount must be a numeric.');
}