-
Notifications
You must be signed in to change notification settings - Fork 100
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
Add PI processing support for common phrases #173
Open
Girgias
wants to merge
3
commits into
php:master
Choose a base branch
from
Girgias:process-pi
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?php | ||
|
||
if (!defined('VALUE_ERROR_BETWEEN_ERROR_SECTION')) { | ||
define('VALUE_ERROR_BETWEEN_ERROR_SECTION', <<<'CONTENT' | ||
<simpara xmlns="http://docbook.org/ns/docbook"> | ||
Throws a <exceptionname>ValueError</exceptionname> if <parameter>PARAMETER_NAME</parameter> | ||
is less than MIN_TAG or greater than MAX_TAG. | ||
</simpara> | ||
CONTENT | ||
); | ||
} | ||
|
||
if (!defined('VALUE_ERROR_BETWEEN_CHANGELOG')) { | ||
define('VALUE_ERROR_BETWEEN_CHANGELOG', <<<'CONTENT' | ||
<row xmlns="http://docbook.org/ns/docbook"> | ||
<entry>VERSION</entry> | ||
<entry> | ||
A <exceptionname>ValueError</exceptionname> is now thrown if | ||
<parameter>PARAMETER_NAME</parameter> is less than MIN_TAG | ||
or greater than MAX_TAG | ||
</entry> | ||
</row> | ||
CONTENT | ||
); | ||
} |
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,18 @@ | ||
<?php | ||
|
||
const VALUE_ERROR_BETWEEN_ERROR_SECTION = <<<'CONTENT' | ||
<simpara> | ||
Lance une <exceptionname>ValueError</exceptionname> si <parameter>PARAMETER_NAME</parameter> | ||
est moins que MIN_TAG ou plus grand que MAX_TAG. | ||
</simpara> | ||
CONTENT; | ||
|
||
const VALUE_ERROR_BETWEEN_CHANGELOG = <<<'CONTENT' | ||
<row> | ||
<entry>VERSION</entry> | ||
<entry> | ||
Une <exceptionname>ValueError</exceptionname> est désormais lancé si | ||
<parameter>PARAMETER_NAME</parameter> est moins que MIN_TAG ou plus grand que MAX_TAG | ||
</entry> | ||
</row> | ||
CONTENT; |
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,38 @@ | ||
<?php | ||
|
||
function error_section_value_error_between( | ||
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. Some duplication between these functions which would be nice to somehow get rid of; at least it should be possible to move the import to the caller. Note that there's also an |
||
string $parameter, | ||
string $min, | ||
string $max | ||
): string { | ||
$min_tag_name = is_numeric($min) ? 'literal' : 'constant'; | ||
$max_tag_name = is_numeric($max) ? 'literal' : 'constant'; | ||
|
||
$min_tag = '<' . $min_tag_name . '>' . $min . '</' . $min_tag_name . '>'; | ||
$max_tag = '<' . $max_tag_name . '>' . $max . '</' . $max_tag_name . '>'; | ||
|
||
return str_replace( | ||
Girgias marked this conversation as resolved.
Show resolved
Hide resolved
|
||
['PARAMETER_NAME', 'MIN_TAG', 'MAX_TAG'], | ||
[$parameter, $min_tag, $max_tag], | ||
VALUE_ERROR_BETWEEN_ERROR_SECTION, | ||
); | ||
} | ||
|
||
function error_section_value_error_between_changelog( | ||
string $version, | ||
string $parameter, | ||
string $min, | ||
string $max | ||
): string { | ||
$min_tag_name = is_numeric($min) ? 'literal' : 'constant'; | ||
$max_tag_name = is_numeric($max) ? 'literal' : 'constant'; | ||
|
||
$min_tag = '<' . $min_tag_name . '>' . $min . '</' . $min_tag_name . '>'; | ||
$max_tag = '<' . $max_tag_name . '>' . $max . '</' . $max_tag_name . '>'; | ||
|
||
return str_replace( | ||
['VERSION', 'PARAMETER_NAME', 'MIN_TAG', 'MAX_TAG'], | ||
[$version, $parameter, $min_tag, $max_tag], | ||
VALUE_ERROR_BETWEEN_CHANGELOG, | ||
); | ||
} |
Oops, something went wrong.
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.
Duplication with
str_starts_with
?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.
No, because we have a bunch of PI instruction that are just
phpdoc
and those that will generate documentation node have more complicated names, so the target is effectively the instruction and the data are values to pass to the corresponding function.Maybe this design is crap, but I didn't want to figure out how to parse the function to call