-
Notifications
You must be signed in to change notification settings - Fork 39
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 #108 from AmpersandHQ/plugin-removed-issue-99
Report plugins on non-existent classes (fix issue #99)
- Loading branch information
Showing
11 changed files
with
368 additions
and
6 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
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
20 changes: 20 additions & 0 deletions
20
...esources/checks/ClassPluginPhp/vendor/magento/module-adobe-ims/Model/NewBusinessLogic.php
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?php | ||
namespace Magento\AdobeIms\Model; | ||
|
||
class NewBusinessLogic | ||
{ | ||
private const UPDATED_AT = 'updated_at'; | ||
|
||
/** | ||
* @inheritdoc | ||
*/ | ||
public function getUpdatedAt(): string | ||
{ | ||
return $this->getData(self::UPDATED_AT); | ||
} | ||
|
||
public function someOtherFunction() | ||
{ | ||
return false; | ||
} | ||
} |
15 changes: 15 additions & 0 deletions
15
...ces/checks/ClassPluginPhp/vendor_orig/magento/module-adobe-ims/Model/FunBusinessLogic.php
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
namespace Magento\AdobeIms\Model; | ||
|
||
class FunBusinessLogic | ||
{ | ||
private const UPDATED_AT = 'updated_at'; | ||
|
||
/** | ||
* @inheritdoc | ||
*/ | ||
public function getUpdatedAt(): string | ||
{ | ||
return $this->getData(self::UPDATED_AT); | ||
} | ||
} |
Oops, something went wrong.