Completed
Push — master ( 67a92e...b03a00 )
by Grégoire
01:54
created

src/Exception/InvalidParameterException.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\Exception;
15
16
use Sonata\CoreBundle\Exception\InvalidParameterException as CoreBundleException;
17
18
/**
19
 * @deprecated Use Sonata\CoreBundle\Exception\InvalidParameterException instead
20
 */
21
class InvalidParameterException extends CoreBundleException
0 ignored issues
show
Deprecated Code introduced by
The class Sonata\CoreBundle\Except...validParameterException has been deprecated with message: since 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...
22
{
23
}
24