/**
  * StoryPointsManager constructor.
  *
  * @param TrelloClient  $trelloClient
  * @param ActionManager $actionManager
  * @param string        $pattern
  */
 public function __construct(TrelloClient $trelloClient, ActionManager $actionManager, string $pattern = null)
 {
     $this->client = $trelloClient->getClient();
     $this->actionManager = $actionManager;
     if (!is_null($pattern)) {
         $this->pattern = $pattern;
     }
 }
 /**
  * BoardManager constructor.
  *
  * @param TrelloClient $trelloClient
  */
 public function __construct(TrelloClient $trelloClient)
 {
     $this->client = $trelloClient->getClient();
 }