You are here

public function SecurityReviewCommands::__construct in Security Review 8

Constructs a SecurityReviewCommands object.

Parameters

\Drupal\security_review\SecurityReview $security_review: Security review service.

\Drupal\security_review\Checklist $checklist: Checklist service.

File

src/Commands/SecurityReviewCommands.php, line 40

Class

SecurityReviewCommands
Class SecurityReviewCommands.

Namespace

Drupal\security_review\Commands

Code

public function __construct(SecurityReview $security_review, Checklist $checklist) {
  $this->securityReviewService = $security_review;
  $this->checklistService = $checklist;
}