Skip to content
Snippets Groups Projects
Commit 7a889bab authored by Joshua Roberson's avatar Joshua Roberson
Browse files

Coder Sniffer fixes

parent 9764ab78
No related branches found
No related tags found
No related merge requests found
...@@ -5,11 +5,11 @@ ...@@ -5,11 +5,11 @@
* Block region permissions module. * Block region permissions module.
*/ */
use \Drupal\Core\Render\Element; use Drupal\Core\Render\Element;
use \Drupal\block\Entity\Block; use Drupal\block\Entity\Block;
use \Drupal\Core\Form\FormStateInterface; use Drupal\Core\Form\FormStateInterface;
use \Drupal\Core\Session\AccountInterface; use Drupal\Core\Session\AccountInterface;
use \Drupal\Core\Access\AccessResult; use Drupal\Core\Access\AccessResult;
/** /**
* Implements hook_form_FORM_ID_alter(). * Implements hook_form_FORM_ID_alter().
......
...@@ -63,7 +63,7 @@ class AccessControlHandler implements ContainerInjectionInterface { ...@@ -63,7 +63,7 @@ class AccessControlHandler implements ContainerInjectionInterface {
* The block. * The block.
* *
* @return \Drupal\Core\Access\AccessResultInterface * @return \Drupal\Core\Access\AccessResultInterface
* An access result. * An access result.
*/ */
public function blockFormAccess(Block $block) { public function blockFormAccess(Block $block) {
$account = $this->currentUser(); $account = $this->currentUser();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment