Commit 1a7560d1 authored by João Ventura's avatar João Ventura Committed by Joao Ventura
Browse files

Issue #3311377 by jcnventura: Fix coding standards

parent c409df93
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -46,7 +46,7 @@ function draggable_dashboard_theme($existing, $type, $theme, $path) {
    ],
    'block__dashboard_item' => [
      'template' => 'block--dashboard-item',
      'base hook' => 'block'
      'base hook' => 'block',
    ],
  ];
}
+2 −1
Original line number Diff line number Diff line
<?php

use Drupal\Component\Serialization\Json;

/**
 * Implements hook_post_update_NAME().
 */
+0 −3
Original line number Diff line number Diff line
@@ -10,10 +10,7 @@ use Drupal\Core\Plugin\PluginFormFactoryInterface;
use Drupal\Core\Url;
use Drupal\draggable_dashboard\Entity\DashboardEntityInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\HttpFoundation\JsonResponse;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;

/**
 * Controller routines for draggable dashboards.
+1 −3
Original line number Diff line number Diff line
@@ -2,13 +2,11 @@

namespace Drupal\draggable_dashboard;

use Drupal\Core\Entity\Controller\EntityController;
use Drupal\Core\Entity\EntityTypeInterface;
use Drupal\Core\Entity\Routing\AdminHtmlRouteProvider;
use Symfony\Component\Routing\Route;

/**
 * Class DashboardHtmlRouteProvider
 * Class DashboardHtmlRouteProvider.
 *
 * @package Drupal\draggable_dashboard
 */
+1 −1
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@ use Drupal\Core\Config\Entity\ConfigEntityListBuilder;
use Drupal\Core\Entity\EntityInterface;

/**
 * Class DashboardListBuilder
 * Class DashboardListBuilder.
 *
 * @package Drupal\draggable_dashboard
 */
Loading