public function W3CLogController::__construct in W3C Validator 8
Constructs a W3CLogController object.
Parameters
\Drupal\Core\Render\RendererInterface $renderer: The renderer service.
\Drupal\Core\Form\FormBuilderInterface $form_builder: The form builder service.
\Drupal\w3c_validator\W3CProcessor $w3c_processor: The W3Processor.
File
- src/
Controller/ W3CLogController.php, line 60
Class
- W3CLogController
- Controller routines for w3c_validator module validation log routes.
Namespace
Drupal\w3c_validator\ControllerCode
public function __construct(RendererInterface $renderer, FormBuilderInterface $form_builder, W3CProcessor $w3c_processor) {
$this->renderer = $renderer;
$this->formBuilder = $form_builder;
$this->w3cProcessor = $w3c_processor;
}