Skip to content
Snippets Groups Projects
Commit 747132e0 authored by Eric Bremner's avatar Eric Bremner
Browse files

ISTWCMS-5754: coding standards

parent b9ad2bad
No related branches found
No related tags found
1 merge request!270Feature/istwcms 5754 ebremner csv menu report
...@@ -13,7 +13,7 @@ use Symfony\Component\HttpFoundation\Response; ...@@ -13,7 +13,7 @@ use Symfony\Component\HttpFoundation\Response;
/** /**
* Provides CSV files for specific UW sites. * Provides CSV files for specific UW sites.
*/ */
class UwDownloadCsvController extends ControllerBase{ class UwDownloadCsvController extends ControllerBase {
/** /**
* Entity type manager from the core. * Entity type manager from the core.
...@@ -23,8 +23,9 @@ class UwDownloadCsvController extends ControllerBase{ ...@@ -23,8 +23,9 @@ class UwDownloadCsvController extends ControllerBase{
protected $entityTypeManager; protected $entityTypeManager;
/** /**
* The path alias.
*
* @var \Drupal\path_alias\AliasManager * @var \Drupal\path_alias\AliasManager
* The path alias.
*/ */
protected $pathAlias; protected $pathAlias;
...@@ -69,7 +70,7 @@ class UwDownloadCsvController extends ControllerBase{ ...@@ -69,7 +70,7 @@ class UwDownloadCsvController extends ControllerBase{
/** /**
* Provides a CSV file for content on a site. * Provides a CSV file for content on a site.
* *
* @return Response * @return Symfony\Component\HttpFoundation\Response
* The page response. * The page response.
* *
* @throws \Drupal\Component\Plugin\Exception\InvalidPluginDefinitionException * @throws \Drupal\Component\Plugin\Exception\InvalidPluginDefinitionException
...@@ -150,7 +151,7 @@ class UwDownloadCsvController extends ControllerBase{ ...@@ -150,7 +151,7 @@ class UwDownloadCsvController extends ControllerBase{
// The menus to be used. // The menus to be used.
$menu_names = [ $menu_names = [
'main', 'main',
'menu-audience-menu' 'menu-audience-menu',
]; ];
// The header. // The header.
......
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