josefsabl

Results 21 comments of josefsabl

Now the problem worsens. Before the e-mail template was quite large. Now we ran into problems with quite simple template that easily matches one screen. One such e-mail takes ridiculous...

Any progress on this? https://forum.nette.org/en/31306-catchexceptionx-for-4xx-errors-only

> @josefsabl Since my suggestions were refused I just kept using my own hacked [Application](https://github.com/enumag/Application) class (contains some other hacks too) to do this. I'm not working with nette anymore...

I extended the `\Nette\Application\Application` class like this: ``` php final class Application extends \Nette\Application\Application { /** * @throws \Throwable */ public function run(): void { try { parent::run(); } catch...

> But that's not the correct solution of the problem, isn't it? > > The purpose of this package is, imo, that we can safely use all the functions provided...

> @josefsabl sorry for the very late answer. > > We are having a hard time to decide whether we should silence those warnings or not. > Most of the...

I also would appreciate suppressing these warnings very much, this is similar/same issue https://github.com/thecodingmachine/safe/issues/120 Note: We are not using any custom error handler but we are using `tracy/tracy` which catches...

The PHP's default value for this parameter is empty array. The Safe version has null as default value and passes it to the core function, which MUST result in a...