The class Sonata\AdminBundle\Admin\Admin has been deprecated: since version 3.1, to be removed in 4.0. Use Sonata\AdminBundle\AbstractAdmin instead
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the ignore-deprecated annotation
18
class ErrorLogAdmin extends /** @scrutinizer ignore-deprecated */ Admin
Loading history...
19
{
20
protected $datagridValues = array(
21
'_page' => 1,
22
'_sort_order' => 'DESC',
23
'_sort_by' => 'date_created'
24
);
25
26
/**
27
* @{inheritDoc}
28
*/
29
public function configureListFields(ListMapper $listMapper)