Skip to content

Remove forbidden @author tag #37015

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
6 changes: 2 additions & 4 deletions app/code/Magento/Sales/Model/ResourceModel/Order/Tax.php
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
* Copyright 2011 Adobe
* All Rights Reserved.
*/
namespace Magento\Sales\Model\ResourceModel\Order;

/**
* Order Tax Model
*
* @author Magento Core Team <[email protected]>
*/
class Tax extends \Magento\Sales\Model\ResourceModel\EntityAbstract
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
* Copyright 2011 Adobe
* All Rights Reserved.
*/
namespace Magento\Sales\Model\ResourceModel\Order\Tax;

/**
* Order Tax Collection
*
* @author Magento Core Team <[email protected]>
*/
class Collection extends \Magento\Sales\Model\ResourceModel\Collection\AbstractCollection
{
Expand Down
7 changes: 3 additions & 4 deletions app/code/Magento/Sales/Model/ResourceModel/Report.php
Original file line number Diff line number Diff line change
@@ -1,21 +1,20 @@
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
* Copyright 2011 Adobe
* All Rights Reserved.
*/
namespace Magento\Sales\Model\ResourceModel;

/**
* Sales report resource model
*
* @author Magento Core Team <[email protected]>
*/
class Report extends \Magento\Sales\Model\ResourceModel\EntityAbstract
{
/**
* Resource initialization
*
* @return void
* phpcs:disable Magento2.CodeAnalysis.EmptyBlock
*/
protected function _construct()
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
* Copyright 2011 Adobe
* All Rights Reserved.
*/
namespace Magento\Sales\Model\ResourceModel\Report;

/**
* Order report resource model
*
* @author Magento Core Team <[email protected]>
*/
abstract class AbstractReport extends \Magento\Reports\Model\ResourceModel\Report\AbstractReport
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,20 +1,16 @@
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
* Copyright 2011 Adobe
* All Rights Reserved.
*/
namespace Magento\Sales\Model\ResourceModel\Report\Collection;

/**
* Report collection abstract model
*
* @author Magento Core Team <[email protected]>
*/
class AbstractCollection extends \Magento\Reports\Model\ResourceModel\Report\Collection\AbstractCollection
{
/**
* Order status
*
* @var string
*/
protected $_orderStatus = null;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
* Copyright 2013 Adobe
* All Rights Reserved.
*/
namespace Magento\Sales\Model\ResourceModel\Report;

/**
* Invoice report resource model
*
* @author Magento Core Team <[email protected]>
*/
class Invoiced extends AbstractReport
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
* Copyright 2011 Adobe
* All Rights Reserved.
*/
namespace Magento\Sales\Model\ResourceModel\Report\Invoiced\Collection;

/**
* Sales report invoiced collection
*
* @author Magento Core Team <[email protected]>
*/
class Invoiced extends Order
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,20 +1,16 @@
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
* Copyright 2011 Adobe
* All Rights Reserved.
*/
namespace Magento\Sales\Model\ResourceModel\Report\Invoiced\Collection;

/**
* Sales report invoiced collection
*
* @author Magento Core Team <[email protected]>
*/
class Order extends \Magento\Sales\Model\ResourceModel\Report\Collection\AbstractCollection
{
/**
* Period format
*
* @var string
*/
protected $_periodFormat;
Expand Down Expand Up @@ -84,6 +80,8 @@ protected function _getSelectedColumns()
}

/**
* Before load
*
* @return $this
*/
protected function _beforeLoad()
Expand Down
Original file line number Diff line number Diff line change
@@ -1,20 +1,16 @@
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
* Copyright 2011 Adobe
* All Rights Reserved.
*/
namespace Magento\Sales\Model\ResourceModel\Report\Order;

/**
* Report order collection
*
* @author Magento Core Team <[email protected]>
*/
class Collection extends \Magento\Sales\Model\ResourceModel\Report\Collection\AbstractCollection
{
/**
* Period format
*
* @var string
*/
protected $_periodFormat;
Expand All @@ -27,8 +23,6 @@ class Collection extends \Magento\Sales\Model\ResourceModel\Report\Collection\Ab
protected $_aggregationTable = 'sales_order_aggregated_created';

/**
* Selected columns
*
* @var array
*/
protected $_selectedColumns = [];
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
* Copyright 2011 Adobe
* All Rights Reserved.
*/
namespace Magento\Sales\Model\ResourceModel\Report\Order;

/**
* Order entity resource model with aggregation by created at
*
* @author Magento Core Team <[email protected]>
*/
class Createdat extends \Magento\Sales\Model\ResourceModel\Report\AbstractReport
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
* Copyright 2011 Adobe
* All Rights Reserved.
*/
namespace Magento\Sales\Model\ResourceModel\Report\Order;

/**
* Order entity resource model with aggregation by updated at
*
* @author Magento Core Team <[email protected]>
*/
class Updatedat extends Createdat
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
* Copyright 2011 Adobe
* All Rights Reserved.
*/
namespace Magento\Sales\Model\ResourceModel\Report\Order\Updatedat;

/**
* Report order updated_at collection
*
* @author Magento Core Team <[email protected]>
*/
class Collection extends \Magento\Sales\Model\ResourceModel\Report\Order\Collection
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
* Copyright 2011 Adobe
* All Rights Reserved.
*/
namespace Magento\Sales\Model\ResourceModel\Report;

/**
* Refund report resource model
*
* @author Magento Core Team <[email protected]>
*/
class Refunded extends AbstractReport
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,27 +1,21 @@
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
* Copyright 2011 Adobe
* All Rights Reserved.
*/
namespace Magento\Sales\Model\ResourceModel\Report\Refunded\Collection;

/**
* Sales report refunded collection
*
* @author Magento Core Team <[email protected]>
*/
class Order extends \Magento\Sales\Model\ResourceModel\Report\Collection\AbstractCollection
{
/**
* Period format
*
* @var string
*/
protected $_periodFormat;

/**
* Selected columns
*
* @var array
*/
protected $_selectedColumns = [];
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
* Copyright 2011 Adobe
* All Rights Reserved.
*/
namespace Magento\Sales\Model\ResourceModel\Report\Refunded\Collection;

/**
* Sales report refunded collection
*
* @author Magento Core Team <[email protected]>
*/
class Refunded extends Order
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
* Copyright 2011 Adobe
* All Rights Reserved.
*/
namespace Magento\Sales\Model\ResourceModel\Report;

/**
* Shipping report resource model
*
* @author Magento Core Team <[email protected]>
*/
class Shipping extends AbstractReport
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,27 +1,21 @@
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
* Copyright 2011 Adobe
* All Rights Reserved.
*/
namespace Magento\Sales\Model\ResourceModel\Report\Shipping\Collection;

/**
* Sales report shipping collection
*
* @author Magento Core Team <[email protected]>
*/
class Order extends \Magento\Sales\Model\ResourceModel\Report\Collection\AbstractCollection
{
/**
* Period format
*
* @var string
*/
protected $_periodFormat;

/**
* Selected columns
*
* @var array
*/
protected $_selectedColumns = [];
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
* Copyright 2011 Adobe
* All Rights Reserved.
*/
namespace Magento\Sales\Model\ResourceModel\Report\Shipping\Collection;

/**
* Sales report shipping collection
*
* @author Magento Core Team <[email protected]>
*/
class Shipment extends Order
{
Expand Down
Loading