/**
  * @see UserForm
  */
 public function configure()
 {
     parent::configure();
     unset($this['number_of_trucks']);
 }
 public function bind(array $taintedValues = null, array $taintedFiles = null)
 {
     $taintedValues['name_slug'] = CustomerTable::slugify($taintedValues['name']);
     parent::bind($taintedValues, $taintedFiles);
 }