Issues (287)

src/translations/en/templatecomments.php (1 issue)

Checks file comment missing package tag

Coding Style Informational
1
<?php
2
/**
3
 * Template Comments plugin for Craft CMS
4
 *
5
 * Adds a HTML comment to demarcate each Twig template that is included or extended.
6
 *
7
 * @link      https://nystudio107.com/
8
 * @copyright Copyright (c)  nystudio107
9
 */
0 ignored issues
show
Missing @package tag in file comment
Loading history...
10
11
/**
12
 * @author    nystudio107
13
 * @package   TemplateComments
14
 * @since     1.0.0
15
 */
16
return [
17
    '{name} plugin loaded' => '{name} plugin loaded',
18
    'Error rendering `{template}` -> {error}' => 'Error rendering `{template}` -> {error}',
19
];
20