Пример #1
0
 /**
  * @param               $action
  * @param array         $exceptions
  * @param int           $retries
  * @param callable $beforeRetry
  */
 public function __construct($action, array $exceptions, int $retries = 3, callable $beforeRetry = null)
 {
     $this->exceptions = $exceptions;
     $this->retries = $retries;
     $this->beforeRetry = $beforeRetry;
     parent::__construct($action);
 }
 /**
  * @param string $groupName
  * @param mixed  $input
  */
 public function __construct(string $groupName, $input)
 {
     parent::__construct($groupName, $input);
 }
 /**
  * DataMapAction constructor.
  *
  * @param string $mapperName
  * @param mixed  $input
  */
 public function __construct(string $mapperName, $input)
 {
     parent::__construct($mapperName, $input);
 }