Rob Landers

Results 78 issues of Rob Landers

When generating fields from a factory method, the field middleware appears to never be called for the generated fields. I expected to be able to do something like: ```php

**Describe the bug** I selected some text in a text block and created a link. I was unable to use spaces in the URL input to insert a shortcode unless...

## In what area(s)? /area runtime > /area operator /area placement > /area docs > /area test-and-release ## What version of Dapr? All ## Expected Behavior `/healthz` to not return...

kind/bug

#### Proposed Changes This calls a new endpoint in D87638-code that allows for reminding users about an uncompleted flow after a few days. #### Testing Instructions See D87638-code #### Pre-merge...

[Status] Needs Review
DO NOT MERGE
Tailored Flows

If any autoloaded files (in libraries) fire the notice: ``` Return type of Class:method() should either be compatible with Class::method: OtherClass, or the #[\ReturnTypeWillChange] attribute should be used to temporarily...

enhancement
Help wanted

The first stage builds PHP, taking into account some "best practices" from [the official image](https://github.com/docker-library/php/blob/master/8.2-rc/bullseye/zts/Dockerfile#L134-L167) and is built on the official image. It is a stand-in for the official image...

This uses Github Actions to automatically run the tests in Docker via `go test` on every PR. This is based on the work in #33. Requires several repo secrets: -...

I attempted a very simple implementation of restarting a worker on a file change: ```php

[`fastcgi_finish_request`](https://www.php.net/manual/en/function.fastcgi-finish-request.php) is often used to perform operations after a request is completed (such as sending an email). Should FrankenPHP implement this and/or create a similar function? There are pro/cons to...

enhancement

Consider the following code: ```php register_shutdown_function(function() { error_log('outside'); }); do { $running = frankenphp_handle_request(function (): void { register_shutdown_function(function() { error_log('in request'); }); }); } while ($running); ``` Nothing is output...

question