-
Notifications
You must be signed in to change notification settings - Fork 9.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #943 from amacgregor/develop
Fixed Failed Test due to Class not following the naming conventions (MAGETWO-32697)
- Loading branch information
Showing
10 changed files
with
26 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,14 +4,14 @@ | |
*/ | ||
namespace Magento\Catalog\Model\Resource\Product\Attribute\Backend; | ||
|
||
use Magento\Catalog\Model\Resource\Product\Attribute\Backend\Groupprice\AbstractGroupprice; | ||
use Magento\Catalog\Model\Resource\Product\Attribute\Backend\GroupPrice\AbstractGroupPrice; | ||
|
||
/** | ||
* Catalog product group price backend attribute model | ||
* | ||
* @author Magento Core Team <[email protected]> | ||
*/ | ||
class Groupprice extends AbstractGroupprice | ||
class GroupPrice extends AbstractGroupPrice | ||
{ | ||
/** | ||
* Initialize connection and define main table | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,9 +8,9 @@ | |
* | ||
* @author Magento Core Team <[email protected]> | ||
*/ | ||
namespace Magento\Catalog\Model\Resource\Product\Attribute\Backend\Groupprice; | ||
namespace Magento\Catalog\Model\Resource\Product\Attribute\Backend\GroupPrice; | ||
|
||
abstract class AbstractGroupprice extends \Magento\Framework\Model\Resource\Db\AbstractDb | ||
abstract class AbstractGroupPrice extends \Magento\Framework\Model\Resource\Db\AbstractDb | ||
{ | ||
/** | ||
* Load Tier Prices for product | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,14 +4,14 @@ | |
*/ | ||
namespace Magento\Catalog\Model\Resource\Product\Attribute\Backend; | ||
|
||
use Magento\Catalog\Model\Resource\Product\Attribute\Backend\Groupprice\AbstractGroupprice; | ||
use Magento\Catalog\Model\Resource\Product\Attribute\Backend\GroupPrice\AbstractGroupPrice; | ||
|
||
/** | ||
* Catalog product tier price backend attribute model | ||
* | ||
* @author Magento Core Team <[email protected]> | ||
*/ | ||
class Tierprice extends AbstractGroupprice | ||
class Tierprice extends AbstractGroupPrice | ||
{ | ||
/** | ||
* Initialize connection and define main table | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters