-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update template version * update template * update compatible versions * Use abstract parent cest to fix tests * Add abstract patchesDataProvider signature * phpcs fix for missing doc (#101) --------- Co-authored-by: Sivaram Manijeganathan <[email protected]> Co-authored-by: Andrii Shevtsov <[email protected]> Co-authored-by: Tom Reece <[email protected]> Co-authored-by: Tom Reece <[email protected]>
- Loading branch information
1 parent
a77832e
commit e5c3c7e
Showing
5 changed files
with
41 additions
and
21 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?php | ||
/** | ||
* Copyright © Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
declare(strict_types=1); | ||
|
||
namespace Magento\CloudPatches\Test\Functional\Acceptance; | ||
|
||
/** | ||
* @group php83 | ||
*/ | ||
class Acceptance83Cest extends AcceptanceCest | ||
{ | ||
/** | ||
* @return array | ||
*/ | ||
protected function patchesDataProvider(): array | ||
{ | ||
return [ | ||
['templateVersion' => '2.4.7', 'magentoVersion' => '2.4.7'], | ||
]; | ||
} | ||
} |
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