/**
  * __construct
  *
  * entry point for this processor.
  *
  * @param Array $input
  * 
  */
 public function __construct($input)
 {
     parent::__construct();
     $this->input = $input;
     $this->main();
 }
 /**
  * __construct
  *
  * entry point for this processor.
  *
  * @param Array $input
  * 
  */
 public function __construct($payload)
 {
     parent::__construct();
     $this->input = $payload;
     $this->main();
 }