-
Notifications
You must be signed in to change notification settings - Fork 41
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
[PAYSHIP-3149] PrestaShop 9 compatibility #1304
Merged
+4,439
−7,244
Merged
Changes from 18 commits
Commits
Show all changes
52 commits
Select commit
Hold shift + click to select a range
1a1d7f0
Updated dependencies to be compatible with php 8.1
L3RAZ 5259d79
AdminAjaxController response fixes
L3RAZ 5ea8fca
Command handler fix
L3RAZ 1bfb530
Semi-working order workflow
L3RAZ 01ba9b3
Fixed some command handlers
L3RAZ 14a7383
Fixed translation in admin ajax controller
L3RAZ 4e26106
Removed commented code
L3RAZ 67e5f16
Added latest features from PS8
L3RAZ a6089d8
Fixed deprecated functions
L3RAZ c644657
Removed deprecated function usage
L3RAZ 7f0e5b0
Removed 1.7 PS version checks
L3RAZ a133991
Removed useless views
L3RAZ 934b5f4
Fixed translation keys
L3RAZ edaf568
Fixed translations
L3RAZ 7654b17
Code review fixes
L3RAZ b8eb84d
Code review fix
L3RAZ a26475e
Cache fix
L3RAZ 8ec4e70
Fixed missing event subscriber
L3RAZ 0ea929f
Fixed circular dependency for Capture handler
L3RAZ 42be99e
Restored logic from PS8 branch
L3RAZ 8c61212
Uncommented PSL signature check
L3RAZ 582f81f
Added autowiring
L3RAZ dbee521
Fixed property visibility
L3RAZ c1e98d7
Added property promotion
L3RAZ 95469e2
Fixed CS fixer
L3RAZ 2beb223
Update gitignore
L3RAZ ec84748
Review fixes
L3RAZ 4ee2436
use Tools::getContextLocale
L3RAZ 6f56c31
Added missing license headers
L3RAZ b23bf46
Fixed test
L3RAZ d464353
PS9 CI (#1311)
L3RAZ c144529
Removed unused dependency
L3RAZ dd12f56
Changed docker ps version
L3RAZ 6d62b49
CS fixer fix
L3RAZ ce5508d
PHPStan workflow fix
L3RAZ 40e8ea7
Unit tests fix
L3RAZ b9d1068
phpstan github error format fix
L3RAZ 3a6c1b6
Update phpstan level
L3RAZ 8930556
Added new phpstan workflow
L3RAZ af0fbcb
Removed new workflow
L3RAZ 223f553
Removed phpstan config for other module versions
L3RAZ 57d26ef
PHPStan error fix
L3RAZ 7fe935a
Fixed tests and added composer script for phpstan
L3RAZ 62422eb
Updated cache action version
L3RAZ 75ed547
Add missing LogSubcriber
L3RAZ 2a319ab
Removed cs-fixer cache file
L3RAZ a55a3b0
Added phpunit script
L3RAZ 719d656
Merge branch 'prestashop/9.x' into feat/PAYSHIP-3149
L3RAZ 06cea08
Fixed module version
L3RAZ 6e46e8f
Crash fix
L3RAZ fb00675
Fixed uninitialized variable error
L3RAZ 3b6ba3b
Added stopwatch dependency
L3RAZ File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Large diffs are not rendered by default.
Oops, something went wrong.
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,11 @@ | ||
<?php | ||
|
||
require_once './vendor/prestashop/php-dev-tools/src/CsFixer/Config.php'; | ||
|
||
$config = new PrestaShop\CodingStandards\CsFixer\Config(); | ||
|
||
/** @var \Symfony\Component\Finder\Finder $finder */ | ||
$finder = $config->setUsingCache(true)->getFinder(); | ||
$finder->in(__DIR__)->exclude('vendor'); | ||
|
||
return $config; |
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.
Unchanged files with check annotations Beta
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
/** | ||
* @var bool | ||
*/ | ||
private $isPatch; | ||
/** | ||
* @var bool |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You added this file in the gitignore, don't forget to remove it. 😉