Completed
Push — master ( 187618...8c43e0 )
by Will
12s
created

src/Admin/CommentsGridField.php (2 issues)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
namespace SilverStripe\Comments\Admin;
4
5
use SilverStripe\Forms\FormField;
6
use SilverStripe\Forms\GridField\GridField;
7
8
class CommentsGridField extends GridField
9
{
10
    /**
11
     * {@inheritdoc}
12
     */
13
    protected function newRow($total, $index, $record, $attributes, $content)
0 ignored issues
show
The return type could not be reliably inferred; please add a @return annotation.

Our type inference engine in quite powerful, but sometimes the code does not provide enough clues to go by. In these cases we request you to add a @return annotation as described here.

Loading history...
14
    {
15
        if (!isset($attributes['class'])) {
16
            $attributes['class'] = '';
17
        }
18
19
        if ($record->IsSpam) {
20
            $attributes['class'] .= ' spam';
21
        }
22
23
        return FormField::create_tag(
0 ignored issues
show
The method create_tag() does not exist on SilverStripe\Forms\FormField. Did you maybe mean create()?

This check marks calls to methods that do not seem to exist on an object.

This is most likely the result of a method being renamed without all references to it being renamed likewise.

Loading history...
24
            'tr',
25
            $attributes,
26
            $content
27
        );
28
    }
29
}
30