Skip to content

Commit

Permalink
Merge pull request #1441 from magento-engcom/develop-prs
Browse files Browse the repository at this point in the history
Public Pull Requests

magento/magento2#10670
  • Loading branch information
Oleksii Korshenko authored Aug 29, 2017
2 parents feb1c5a + c446d38 commit b9d696e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,12 @@

use Magento\Framework\Phrase;
use Magento\Framework\UrlInterface;
use Zend\Stdlib\JsonSerializable;
use Magento\Customer\Model\ResourceModel\Group\CollectionFactory;

/**
* Class Options
*/
class Options implements JsonSerializable
class Options implements \JsonSerializable
{
/**
* @var array
Expand Down
5 changes: 2 additions & 3 deletions app/code/Magento/Ui/Component/Action.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
namespace Magento\Ui\Component;

use Magento\Framework\View\Element\UiComponent\ContextInterface;
use Zend\Stdlib\JsonSerializable;

/**
* Class Action
Expand All @@ -16,15 +15,15 @@ class Action extends AbstractComponent
const NAME = 'action';

/**
* @var array|JsonSerializable
* @var array|\JsonSerializable
*/
protected $actions;

/**
* @param ContextInterface $context
* @param array $components
* @param array $data
* @param array|JsonSerializable $actions
* @param array|\JsonSerializable $actions
*/
public function __construct(
ContextInterface $context,
Expand Down
4 changes: 1 addition & 3 deletions lib/internal/Magento/Framework/DB/Sql/Expression.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,10 @@
*/
namespace Magento\Framework\DB\Sql;

use Zend\Stdlib\JsonSerializable;

/**
* Class is wrapper over Zend_Db_Expr for implement JsonSerializable interface.
*/
class Expression extends \Zend_Db_Expr implements ExpressionInterface, JsonSerializable
class Expression extends \Zend_Db_Expr implements ExpressionInterface, \JsonSerializable
{
/**
* @inheritdoc
Expand Down

0 comments on commit b9d696e

Please sign in to comment.