Completed
Push — master ( 82de2a...ab45a8 )
by Grégoire
11s
created

src/Form/Type/MessageSerializationType.php (1 issue)

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
declare(strict_types=1);
4
5
/*
6
 * This file is part of the Sonata Project package.
7
 *
8
 * (c) Thomas Rabaix <[email protected]>
9
 *
10
 * For the full copyright and license information, please view the LICENSE
11
 * file that was distributed with this source code.
12
 */
13
14
namespace Sonata\NotificationBundle\Form\Type;
15
16
use Sonata\CoreBundle\Form\Type\BaseDoctrineORMSerializationType;
17
18
class MessageSerializationType extends BaseDoctrineORMSerializationType
0 ignored issues
show
Deprecated Code introduced by
The class Sonata\CoreBundle\Form\T...ineORMSerializationType has been deprecated with message: Since version 3.x, to be removed in 4.0.

This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the type will be removed from the class and what other constant to use instead.

Loading history...
19
{
20
}
21