Skip to content
Snippets Groups Projects
Commit e89de7f7 authored by Meysam Zandy's avatar Meysam Zandy
Browse files

Fix automatically fix coding standards

parent 4a7950ad
Branches
Tags
No related merge requests found
......@@ -2,7 +2,7 @@
/**
* @file
+ * Clean restful api.
* + * Clean restful api.
*/
use Drupal\Core\Routing\RouteMatchInterface;
......@@ -14,15 +14,15 @@ use Drupal\Core\Routing\RouteMatchInterface;
* @param \Drupal\Core\Routing\RouteMatchInterface $route_match
*
* @return string
* Return in string
* Return in string
*/
function clean_node_api_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the ctc module.
case 'help.page.clean_node_api':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Clean RESTful Web Services API is just alternative for default drupal APIs that is not clean.') . '</p>';
return $output;
switch ($route_name) {
// Main module help for the ctc module.
case 'help.page.clean_node_api':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Clean RESTful Web Services API is just alternative for default drupal APIs that is not clean.') . '</p>';
return $output;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment