Skip to content

Remove forbidden @author tag #37005

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
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions app/code/Magento/Multishipping/Block/Checkout/Shipping.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
* Copyright 2011 Adobe
* All Rights Reserved.
*/
declare(strict_types=1);

Expand All @@ -15,7 +15,6 @@
* Mustishipping checkout shipping
*
* @api
* @author Magento Core Team <[email protected]>
* @since 100.0.2
*/
class Shipping extends \Magento\Sales\Block\Items\AbstractItems
Expand Down
8 changes: 4 additions & 4 deletions app/code/Magento/Multishipping/Block/Checkout/State.php
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
* Copyright 2011 Adobe
* All Rights Reserved.
*/

/**
* Multishipping checkout state
*
* @author Magento Core Team <[email protected]>
*/
namespace Magento\Multishipping\Block\Checkout;

Expand All @@ -33,6 +31,8 @@ public function __construct(
}

/**
* Retrieve available checkout steps
*
* @return array
*/
public function getSteps()
Expand Down
12 changes: 8 additions & 4 deletions app/code/Magento/Multishipping/Block/Checkout/Success.php
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
* Copyright 2011 Adobe
* All Rights Reserved.
*/

/**
* Multishipping checkout success information
*
* @author Magento Core Team <[email protected]>
*/
namespace Magento\Multishipping\Block\Checkout;

Expand All @@ -32,6 +30,8 @@ public function __construct(
}

/**
* Get Order Ids
*
* @return array|bool|string
*/
public function getOrderIds()
Expand All @@ -44,6 +44,8 @@ public function getOrderIds()
}

/**
* Get order Url
*
* @param int $orderId
* @return string
*/
Expand All @@ -53,6 +55,8 @@ public function getViewOrderUrl($orderId)
}

/**
* Get continue Url
*
* @return string
*/
public function getContinueUrl()
Expand Down
6 changes: 2 additions & 4 deletions app/code/Magento/Multishipping/Helper/Url.php
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
* Copyright 2011 Adobe
* All Rights Reserved.
*/

/**
* Multi Shipping urls helper
*
* @author Magento Core Team <[email protected]>
*/
namespace Magento\Multishipping\Helper;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
* Copyright 2011 Adobe
* All Rights Reserved.
*/
namespace Magento\Multishipping\Model\Checkout\Type\Multishipping;

Expand All @@ -11,21 +11,21 @@
/**
* Multishipping checkout state model
*
* @author Magento Core Team <[email protected]>
* @SuppressWarnings(PHPMD.CookieAndSessionMisuse)
*/
class State extends \Magento\Framework\DataObject
{
const STEP_SELECT_ADDRESSES = 'multishipping_addresses';
public const STEP_SELECT_ADDRESSES = 'multishipping_addresses';

const STEP_SHIPPING = 'multishipping_shipping';
public const STEP_SHIPPING = 'multishipping_shipping';

const STEP_BILLING = 'multishipping_billing';
public const STEP_BILLING = 'multishipping_billing';

const STEP_OVERVIEW = 'multishipping_overview';
public const STEP_OVERVIEW = 'multishipping_overview';

const STEP_SUCCESS = 'multishipping_success';
public const STEP_SUCCESS = 'multishipping_success';

const STEP_RESULTS = 'multishipping_results';
public const STEP_RESULTS = 'multishipping_results';

/**
* Allow steps array
Expand Down Expand Up @@ -107,6 +107,8 @@ public function getActiveStep()
}

/**
* Setup Checkout step
*
* @param string $step
* @return $this
*/
Expand Down Expand Up @@ -171,34 +173,41 @@ public function unsCompleteStep($step)
return $this;
}

// phpcs:disable
/**
*
* @return bool
*/
public function canSelectAddresses()
{
return false;
}

/**
* @return bool
*/
public function canInputShipping()
{
return false;
}

/**
* @return bool
*/
public function canSeeOverview()
{
return false;
}

/**
* @return bool
*/
public function canSuccess()
{
return false;
}

// phpcs:enable
/**
* Retrieve checkout session
*
Expand Down
5 changes: 2 additions & 3 deletions app/code/Magento/Newsletter/Block/Adminhtml/Problem.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
* Copyright 2011 Adobe
* All Rights Reserved.
*/
namespace Magento\Newsletter\Block\Adminhtml;

Expand All @@ -11,7 +11,6 @@
* Newsletter problem block template.
*
* @api
* @author Magento Core Team <[email protected]>
* @since 100.0.2
*/
class Problem extends \Magento\Backend\Block\Template
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
* Copyright 2011 Adobe
* All Rights Reserved.
*/

/**
* Newsletter subscribers grid filter checkbox
*
* @author Magento Core Team <[email protected]>
*/
namespace Magento\Newsletter\Block\Adminhtml\Problem\Grid\Filter;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
* Copyright 2011 Adobe
* All Rights Reserved.
*/

/**
* Newsletter subscribers grid checkbox item renderer
*
* @author Magento Core Team <[email protected]>
*/
namespace Magento\Newsletter\Block\Adminhtml\Problem\Grid\Renderer;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
* Copyright 2011 Adobe
* All Rights Reserved.
*/

namespace Magento\Newsletter\Block\Adminhtml\Queue\Edit;
Expand All @@ -10,8 +10,6 @@

/**
* Newsletter queue edit form
*
* @author Magento Core Team <[email protected]>
*/
class Form extends \Magento\Backend\Block\Widget\Form\Generic
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
* Copyright 2011 Adobe
* All Rights Reserved.
*/

/**
* Newsletter queue grid block action item renderer
*
* @author Magento Core Team <[email protected]>
*/
namespace Magento\Newsletter\Block\Adminhtml\Queue\Grid\Renderer;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
* Copyright 2011 Adobe
* All Rights Reserved.
*/

/**
* Admin form widget
*
* @author Magento Core Team <[email protected]>
*/
namespace Magento\Newsletter\Block\Adminhtml\Queue\Preview;

Expand Down
8 changes: 3 additions & 5 deletions app/code/Magento/Newsletter/Block/Adminhtml/Subscriber.php
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
* Copyright 2011 Adobe
* All Rights Reserved.
*/

/**
* Newsletter subscriber grid block
*
* @author Magento Core Team <[email protected]>
*/
namespace Magento\Newsletter\Block\Adminhtml;

Expand All @@ -25,7 +23,7 @@
class Subscriber extends Template
{
/**
* Queue collection
* Queue collection property
*
* @var Collection
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
* Copyright 2013 Adobe
* All Rights Reserved.
*/

/**
* Newsletter subscribers grid block
*
* @author Magento Core Team <[email protected]>
*/
namespace Magento\Newsletter\Block\Adminhtml\Subscriber;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
* Copyright 2011 Adobe
* All Rights Reserved.
*/

/**
* Newsletter subscribers grid filter checkbox
*
* @author Magento Core Team <[email protected]>
*/
namespace Magento\Newsletter\Block\Adminhtml\Subscriber\Grid\Filter;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
* Copyright 2011 Adobe
* All Rights Reserved.
*/

/**
* Newsletter subscribers grid checkbox item renderer
*
* @author Magento Core Team <[email protected]>
*/
namespace Magento\Newsletter\Block\Adminhtml\Subscriber\Grid\Renderer;

Expand Down
8 changes: 4 additions & 4 deletions app/code/Magento/Newsletter/Block/Adminhtml/Template.php
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
* Copyright 2011 Adobe
* All Rights Reserved.
*/

/**
* Newsletter templates page content block
*
* @author Magento Core Team <[email protected]>
*/
namespace Magento\Newsletter\Block\Adminhtml;

Expand All @@ -19,6 +17,8 @@ class Template extends \Magento\Backend\Block\Template
protected $_template = 'Magento_Newsletter::template/list.phtml';

/**
* Prepare the layout
*
* @return $this
*/
protected function _prepareLayout()
Expand Down
Loading