No flags found
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
b7bb165
... +1 ...
25e8f2a
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
16 | 16 | use Doctrine\DBAL\Platforms\AbstractPlatform; |
|
17 | 17 | use Doctrine\DBAL\Types\Type; |
|
18 | 18 | ||
19 | - | @trigger_error( |
|
20 | - | 'The '.__NAMESPACE__.'\JsonType class is deprecated since 1.2 in favor of '. |
|
21 | - | 'Doctrine\DBAL\Types\JsonType, and will be removed in 2.0.', |
|
22 | - | \E_USER_DEPRECATED |
|
23 | - | ); |
|
24 | - | ||
25 | 19 | /** |
|
26 | 20 | * NEXT_MAJOR: Remove this class. |
|
27 | 21 | * |
|
28 | 22 | * Convert a value into a json string to be stored into the persistency layer. |
|
23 | + | * |
|
24 | + | * @deprecated since sonata-project/doctrine-extensions 1.2, to be removed in 2.0. Use JsonType from Doctrine DBAL instead. |
|
29 | 25 | */ |
|
30 | 26 | class JsonType extends Type |
|
31 | 27 | { |
16 | 16 | use Sonata\Doctrine\Bridge\Symfony\SonataDoctrineBundle as ForwardCompatibleSonataDoctrineBundle; |
|
17 | 17 | use Symfony\Component\HttpKernel\Bundle\Bundle; |
|
18 | 18 | ||
19 | - | @trigger_error(sprintf( |
|
20 | - | 'The %s\SonataDoctrineBundle class is deprecated since sonata-project/doctrine-extensions 1.9, to be removed in version 2.0. Use %s instead.', |
|
21 | - | __NAMESPACE__, |
|
22 | - | ForwardCompatibleSonataDoctrineBundle::class |
|
23 | - | ), \E_USER_DEPRECATED); |
|
24 | - | ||
25 | 19 | // @phpstan-ignore-next-line |
|
26 | 20 | if (false) { |
|
27 | 21 | /** |
21 | 21 | use Doctrine\Persistence\Mapping\ClassMetadata; |
|
22 | 22 | use PHPUnit\Framework\TestCase; |
|
23 | 23 | ||
24 | - | @trigger_error( |
|
25 | - | 'The '.__NAMESPACE__.'\EntityManagerMockFactory class is deprecated since '. |
|
26 | - | 'sonata-project/doctrine-extensions 1.5 in favor of '. |
|
27 | - | __NAMESPACE__.'\EntityManagerMockFactoryTrait, and will be removed in 2.0.', |
|
28 | - | \E_USER_DEPRECATED |
|
29 | - | ); |
|
30 | - | ||
31 | 24 | /** |
|
32 | 25 | * NEXT_MAJOR: Remove this class. |
|
33 | 26 | * |
15 | 15 | ||
16 | 16 | use Sonata\DatagridBundle\Pager\PagerInterface; |
|
17 | 17 | ||
18 | - | @trigger_error( |
|
19 | - | 'The '.__NAMESPACE__.'\PageableManagerInterface class is deprecated since 1.3 in favor of '. |
|
20 | - | 'Sonata\DatagridBundle\Pager\PageableInterface, and will be removed in 2.0.', |
|
21 | - | \E_USER_DEPRECATED |
|
22 | - | ); |
|
23 | - | ||
24 | 18 | /** |
|
25 | 19 | * @author Raphaël Benitte <benitteraphael@gmail.com> |
|
26 | 20 | * |
Files | Complexity | Coverage |
---|---|---|
src | ø | 0.13% 63.61% |
Project Totals (27 files) | 211 | 63.61% |
25e8f2a
6b4b493
b7bb165