PHP - Apply Factory Method Pattern#69
Open
ahmedkamaldabour wants to merge 2 commits intomahyoussef:mainfrom
Open
PHP - Apply Factory Method Pattern#69ahmedkamaldabour wants to merge 2 commits intomahyoussef:mainfrom
ahmedkamaldabour wants to merge 2 commits intomahyoussef:mainfrom
Conversation
…sa, MasterCard, and American Express
feat: implement Factory Method pattern for payment processing
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This pull request introduces a new implementation of the Factory Method design pattern for payment processing in the codebase. It adds a set of classes and interfaces to support the creation and handling of different payment methods (Visa, MasterCard, American Express) in a scalable and maintainable way. Additionally, it updates the example usage in the main index file to demonstrate the new pattern.
Key changes include:
Factory Method Pattern Implementation:
PaymentMethodinterface, which defines the contract for all payment method classes, including methods for authorization, money transfer, fee calculation, and card details management.Visa,MasterCard, andAmericanExpress, each providing specific logic for their respective card types. [1] [2] [3]PaymentMethodFactoryclass, which creates instances of the appropriate payment method based on the card type provided.PaymentProcessorclass, which uses the factory to process payments in a unified way, demonstrating the Factory Method pattern in action.Example and Usage Updates:
index.phpto comment out the previous newsletter example and add a new example demonstrating how to use thePaymentProcessorand Factory Method pattern for payment processing.