Rodrigo Pedra Brum

Results 29 comments of Rodrigo Pedra Brum

> as a dependency of the controller and it would be resolved after being filled with data, correct? Correct. And any modifications -- such as adding attributes or merging input...

Modifications done by middleware declared in a constructor, will not be available yet. I mean inside the controller's constructor. If you assign the instance to a controller property, they might...

For example, assume these middleware: ~~~php class FirstMiddleware { public function handle(Request $request, \Closure $next) { $request->attributes->set('foo', 'bar'); $request->merge(['baz' => true]); return $next($request); } } ~~~ and ~~~php class SecondMiddleware...

@lorisleiva I actually share the same opinion. But after discussion on issue #44177 I see how a developer can be surprised for a controller's constructor not working as expected. This...

> I can't imagine why you'd run into any problems, so I'm not sure what these potential issues could be The problems are the same as you are having now:...

Tiptap maybe? https://tiptap.dev/

I have the same output as @lmf-mx lots of these messages: ``` 2023-07-28T02:17:48.055835-03:00 localhost appimagelauncherd[28559]: Directory /Applications does not exist, skipping ``` Even though I never configured such directory. Let...

If you have docker installed, try stopping docker service. In the distro I use (openSUSE TW) the command is this one: ~~~ systemctl stop docker.service ~~~ I think it might...

Just in case, the `Roave\BetterReflection\SourceLocator\Type\SourceLocator` interface expects an implementing class to implement its `locateIdentifier()` method, which, in turn, has a return type of `Roave\BetterReflection\Reflection\Reflection|null`. `Roave\BetterReflection\Reflection\Reflection` is also marked as `@internal`.

@ChrisTitusTech Okular recently receiveid an eco friendly certification, due to low energy consumption. And I am yet to see a better document reader than it. If I could ask to...