Issues (287)

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

Checks file comment incomplete copyright

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
0 ignored issues
show
@copyright tag must contain a year and the name of the copyright holder
Loading history...
9
 */
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