Skip to content

Commit c446d38

Browse files
author
Oleksii Korshenko
authored
MAGETWO-71953: Removed deprececated Zend\Stdlib\JsonSerializable references #10670
2 parents e1a1ef5 + adbd622 commit c446d38

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed

app/code/Magento/Customer/Ui/Component/MassAction/Group/Options.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,12 @@
77

88
use Magento\Framework\Phrase;
99
use Magento\Framework\UrlInterface;
10-
use Zend\Stdlib\JsonSerializable;
1110
use Magento\Customer\Model\ResourceModel\Group\CollectionFactory;
1211

1312
/**
1413
* Class Options
1514
*/
16-
class Options implements JsonSerializable
15+
class Options implements \JsonSerializable
1716
{
1817
/**
1918
* @var array

app/code/Magento/Ui/Component/Action.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
namespace Magento\Ui\Component;
77

88
use Magento\Framework\View\Element\UiComponent\ContextInterface;
9-
use Zend\Stdlib\JsonSerializable;
109

1110
/**
1211
* Class Action
@@ -16,15 +15,15 @@ class Action extends AbstractComponent
1615
const NAME = 'action';
1716

1817
/**
19-
* @var array|JsonSerializable
18+
* @var array|\JsonSerializable
2019
*/
2120
protected $actions;
2221

2322
/**
2423
* @param ContextInterface $context
2524
* @param array $components
2625
* @param array $data
27-
* @param array|JsonSerializable $actions
26+
* @param array|\JsonSerializable $actions
2827
*/
2928
public function __construct(
3029
ContextInterface $context,

lib/internal/Magento/Framework/DB/Sql/Expression.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,10 @@
55
*/
66
namespace Magento\Framework\DB\Sql;
77

8-
use Zend\Stdlib\JsonSerializable;
9-
108
/**
119
* Class is wrapper over Zend_Db_Expr for implement JsonSerializable interface.
1210
*/
13-
class Expression extends \Zend_Db_Expr implements ExpressionInterface, JsonSerializable
11+
class Expression extends \Zend_Db_Expr implements ExpressionInterface, \JsonSerializable
1412
{
1513
/**
1614
* @inheritdoc

0 commit comments

Comments
 (0)