-
-
Notifications
You must be signed in to change notification settings - Fork 9.6k
[DIC] Add a require
env var processor
#30897
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
Conversation
Before I forget: Can I (or who can) add the FOSSHackathon label? |
I guess tests are failing due to some other issue...? |
@mpdude you should add the hashtags in the PR description (allowing to find all these issues and PR through the github search, even on multiple repos) |
this requires either a doc PR or at least a doc issue. |
Doc PR added. |
@stof Not sure I understand how to do this |
Regarding the failed tests, every test run fails due to different reasons. In all cases, I don't see how that would be related to this PR. |
This allows to process .php files, returning the value returned from that file. Leverages the opcache.
60ad78a
to
03da3a2
Compare
Rebased on master to give Travis/CI tests another try. |
Thank you @mpdude. |
This PR was merged into the 4.3-dev branch. Discussion ---------- [DIC] Add a `require` env var processor | Q | A | ------------- | --- | Branch? | master | Bug fix? | no | New feature? | yes | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | | License | MIT | Doc PR | symfony/symfony-docs#11313 This adds a new `require` processor that will `require()` the PHP file given as input value and return the value `return`ed from that file. Leverages opcaching (yay!). #EUFOSSA Commits ------- 03da3a2 Add a `require` env var processor
…ude) This PR was squashed before being merged into the master branch (closes #11313). Discussion ---------- Add documentation for the `require` env processor Documentation for symfony/symfony#30897, discussed on the FOSSHackathon. Commits ------- 1011b42 Add documentation for the `require` env processor
This adds a new
require
processor that willrequire()
the PHP file given as input value and return the valuereturn
ed from that file. Leverages opcaching (yay!).#EUFOSSA