Skip to content

Commit

Permalink
Merge branch 'develop' into BUGS
Browse files Browse the repository at this point in the history
  • Loading branch information
sevos1984 authored Jun 27, 2017
2 parents 3584686 + 68a79d9 commit b96f060
Show file tree
Hide file tree
Showing 516 changed files with 1,224 additions and 41 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
*/
namespace Magento\AdminNotification\Controller\Adminhtml;

/**
* @api
*/
abstract class Notification extends \Magento\Backend\App\AbstractAction
{
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
* AdminNotification update frequency source
*
* @codeCoverageIgnore
* @api
*/
class Frequency implements \Magento\Framework\Option\ArrayInterface
{
Expand Down
1 change: 1 addition & 0 deletions app/code/Magento/AdminNotification/Model/Feed.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
*
* @author Magento Core Team <core@magentocommerce.com>
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
* @api
*/
class Feed extends \Magento\Framework\Model\AbstractModel
{
Expand Down
2 changes: 1 addition & 1 deletion app/code/Magento/AdminNotification/Model/Inbox.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* @method int getIsRemove()
* @method \Magento\AdminNotification\Model\Inbox setIsRemove(int $value)
*
* @author Magento Core Team <core@magentocommerce.com>
* @api
*/
class Inbox extends \Magento\Framework\Model\AbstractModel implements NotifierInterface, InboxInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
* AdminNotification Inbox interface
*
* @author Magento Core Team <core@magentocommerce.com>
* @api
*/
interface InboxInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
* Notification service model
*
* @author Magento Core Team <core@magentocommerce.com>
* @api
*/
class NotificationService
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
*/
namespace Magento\AdminNotification\Model\ResourceModel\Grid;

/**
* @api
*/
class Collection extends \Magento\AdminNotification\Model\ResourceModel\Inbox\Collection
{
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@
namespace Magento\AdminNotification\Model\ResourceModel;

/**
* AdminNotification Inbox model
*
* @author Magento Core Team <core@magentocommerce.com>
* @api
*/
class Inbox extends \Magento\Framework\Model\ResourceModel\Db\AbstractDb
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
*
* @api
* @author Magento Core Team <core@magentocommerce.com>
* @api
*/
class Collection extends \Magento\Framework\Model\ResourceModel\Db\Collection\AbstractCollection
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
*/
namespace Magento\AdminNotification\Model\ResourceModel\Inbox\Collection;

/**
* @api
*/
class Critical extends \Magento\Framework\Model\ResourceModel\Db\Collection\AbstractCollection
{
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
*/
namespace Magento\AdminNotification\Model\ResourceModel\Inbox\Collection;

/**
* @api
*/
class Unread extends \Magento\AdminNotification\Model\ResourceModel\Inbox\Collection
{
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
*/
namespace Magento\AdminNotification\Model\ResourceModel\System;

/**
* @api
*/
class Message extends \Magento\Framework\Model\ResourceModel\Db\AbstractDb
{
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
*/
namespace Magento\AdminNotification\Model\ResourceModel\System\Message;

/**
* @api
*/
class Collection extends \Magento\Framework\Model\ResourceModel\Db\Collection\AbstractCollection
{
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
*/
namespace Magento\AdminNotification\Model\ResourceModel\System\Message\Collection;

/**
* @api
*/
class Synchronized extends \Magento\AdminNotification\Model\ResourceModel\System\Message\Collection
{
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

/**
* @codeCoverageIgnore
* @api
*/
class Message extends \Magento\Framework\Model\AbstractModel implements \Magento\Framework\Notification\MessageInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
*/
namespace Magento\AdminNotification\Model\System\Message;

/**
* @api
*/
class CacheOutdated implements \Magento\Framework\Notification\MessageInterface
{
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
*/
namespace Magento\AdminNotification\Model\System\Message\Media;

/**
* @api
*/
abstract class AbstractSynchronization implements \Magento\Framework\Notification\MessageInterface
{
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@

namespace Magento\AdminNotification\Model\System\Message\Media\Synchronization;

/**
* @api
*/
class Error extends \Magento\AdminNotification\Model\System\Message\Media\AbstractSynchronization
{
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
*/
namespace Magento\AdminNotification\Model\System\Message\Media\Synchronization;

/**
* @api
*/
class Success extends \Magento\AdminNotification\Model\System\Message\Media\AbstractSynchronization
{
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@

use Magento\Store\Model\Store;

/**
* @api
*/
class Security implements \Magento\Framework\Notification\MessageInterface
{
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
use Magento\AdminNotification\Model\ResourceModel\System\Message\Collection\SynchronizedFactory;

/**
* Class DataProvider
* @api
*/
class DataProvider extends \Magento\Ui\DataProvider\AbstractDataProvider
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/

/**
* @api
*/
define([
'Magento_Ui/js/grid/columns/column',
'underscore'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
* See COPYING.txt for license details.
*/

/**
* @api
*/
define([
'Magento_Ui/js/grid/listing',
'Magento_Ui/js/lib/spinner',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
* See COPYING.txt for license details.
*/

/**
* @api
*/
define([
'jquery',
'mage/template',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
* See COPYING.txt for license details.
*/

/**
* @api
*/
define([
'jquery',
'jquery/ui',
Expand Down
3 changes: 3 additions & 0 deletions app/code/Magento/Backend/App/Area/FrontNameResolver.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
use Magento\Store\Model\ScopeInterface;
use Magento\Store\Model\Store;

/**
* @api
*/
class FrontNameResolver implements \Magento\Framework\App\Area\FrontNameResolverInterface
{
const XML_PATH_USE_CUSTOM_ADMIN_PATH = 'admin/url/use_custom_path';
Expand Down
1 change: 1 addition & 0 deletions app/code/Magento/Backend/App/BackendApp.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

/**
* Backend Application which uses Magento Backend authentication process
* @api
*/
class BackendApp
{
Expand Down
1 change: 1 addition & 0 deletions app/code/Magento/Backend/App/BackendAppList.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

/**
* List of Backend Applications to allow injection of them through the DI
* @api
*/
class BackendAppList
{
Expand Down
1 change: 1 addition & 0 deletions app/code/Magento/Backend/App/ConfigInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

/**
* Backend config accessor
* @api
*/
interface ConfigInterface
{
Expand Down
3 changes: 3 additions & 0 deletions app/code/Magento/Backend/App/DefaultPath.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
*/
namespace Magento\Backend\App;

/**
* @api
*/
class DefaultPath implements \Magento\Framework\App\DefaultPathInterface
{
/**
Expand Down
3 changes: 3 additions & 0 deletions app/code/Magento/Backend/App/Request/PathInfoProcessor.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
*/
namespace Magento\Backend\App\Request;

/**
* @api
*/
class PathInfoProcessor implements \Magento\Framework\App\Request\PathInfoProcessorInterface
{
/**
Expand Down
3 changes: 3 additions & 0 deletions app/code/Magento/Backend/App/Response/Http/FileFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@

use Magento\Framework\App\Filesystem\DirectoryList;

/**
* @api
*/
class FileFactory extends \Magento\Framework\App\Response\Http\FileFactory
{
/**
Expand Down
3 changes: 3 additions & 0 deletions app/code/Magento/Backend/App/Router.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
*/
namespace Magento\Backend\App;

/**
* @api
*/
class Router extends \Magento\Framework\App\Router\Base
{
/**
Expand Down
3 changes: 3 additions & 0 deletions app/code/Magento/Backend/App/Router/NoRouteHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
*/
namespace Magento\Backend\App\Router;

/**
* @api
*/
class NoRouteHandler implements \Magento\Framework\App\Router\NoRouteHandlerInterface
{
/**
Expand Down
3 changes: 3 additions & 0 deletions app/code/Magento/Backend/App/UserConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@
use Magento\Framework\App\Console\Response;
use Magento\Framework\AppInterface;

/**
* @api
*/
class UserConfig implements AppInterface
{
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
*/
namespace Magento\Backend\Block\Catalog\Product\Tab;

/**
* @api
*/
class Container extends \Magento\Backend\Block\Template implements \Magento\Backend\Block\Widget\Tab\TabInterface
{
/**
Expand Down
1 change: 1 addition & 0 deletions app/code/Magento/Backend/Block/Dashboard/Grid.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
* Adminhtml dashboard grid
*
* @author Magento Core Team <core@magentocommerce.com>
* @api
*/
class Grid extends \Magento\Backend\Block\Widget\Grid\Extended
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

/**
* Dashboard search query column renderer
* @api
*/
class Searchquery extends \Magento\Backend\Block\Widget\Grid\Column\Renderer\AbstractRenderer
{
Expand Down
1 change: 1 addition & 0 deletions app/code/Magento/Backend/Block/Media/Uploader.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

/**
* Adminhtml media library uploader
* @api
*/
class Uploader extends \Magento\Backend\Block\Widget
{
Expand Down
1 change: 1 addition & 0 deletions app/code/Magento/Backend/Block/Menu.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
* @method \Magento\Backend\Block\Menu setAdditionalCacheKeyInfo(array $cacheKeyInfo)
* @method array getAdditionalCacheKeyInfo()
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
* @api
*/
class Menu extends \Magento\Backend\Block\Template
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

/**
* Form fieldset renderer
* @api
*/
class Fieldset extends \Magento\Backend\Block\Template implements RendererInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

/**
* Form fieldset renderer
* @api
*/
class Element extends \Magento\Backend\Block\Widget\Form\Renderer\Fieldset\Element implements
\Magento\Framework\Data\Form\Element\Renderer\RendererInterface
Expand Down
1 change: 1 addition & 0 deletions app/code/Magento/Backend/Block/System/Store/Store.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
*
* @api
* @author Magento Core Team <core@magentocommerce.com>
* @api
*/
class Store extends \Magento\Backend\Block\Widget\Grid\Container
{
Expand Down
Loading

0 comments on commit b96f060

Please sign in to comment.