This repository was archived by the owner on Jan 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 79
Allow to define if the type is an alias or not. #40
Closed
Closed
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
d4cf0d2
Allow to define if the type is an alias or not.
vonglasow c0f092e
Remove unneeded method and rename property
vonglasow ae26be2
Remove method unneeded and refactor code.
vonglasow 24c2b49
Use TypeGenerator instead of array to set Type.
vonglasow 538ea0e
Add tests for setType in ParameterGenerator
vonglasow 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 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -96,7 +96,7 @@ public static function fromArray(array $array) | |
| { | ||
| if (!isset($array['name'])) { | ||
| throw new Exception\InvalidArgumentException( | ||
| 'Paramerer generator requires that a name is provided for this object' | ||
| 'Parameter generator requires that a name is provided for this object' | ||
| ); | ||
| } | ||
|
|
||
|
|
@@ -163,14 +163,25 @@ public function __construct( | |
| } | ||
|
|
||
| /** | ||
| * @param string $type | ||
| * @param string|TypeGenerator $type | ||
| * @throws Exception\InvalidArgumentException | ||
| * @return ParameterGenerator | ||
| */ | ||
| public function setType($type) | ||
| { | ||
| $this->type = TypeGenerator::fromTypeString($type); | ||
| if (is_string($type)) { | ||
| $this->type = TypeGenerator::fromTypeString($type); | ||
| return $this; | ||
| } | ||
|
|
||
| return $this; | ||
| if ($type instanceof TypeGenerator) { | ||
| $this->type = $type; | ||
| return $this; | ||
| } | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. After this block, you should throw an exception (unknown parameter type passed in) |
||
|
|
||
| throw new Exception\InvalidArgumentException( | ||
| 'Unknown parameter type passed in' | ||
| ); | ||
| } | ||
|
|
||
| /** | ||
|
|
||
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
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
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
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.
The duplicate
return $this;could be moved to the bottom outside the if statementsThere 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.
He's returning early here.