Branch: refs/heads/master Home: https://github.com/phpmyadmin/phpmyadmin Commit: e0d42d286240d826f7fe28aa213f82cd8a1575e2 https://github.com/phpmyadmin/phpmyadmin/commit/e0d42d286240d826f7fe28aa213f... Author: Maurício Meneghini Fauth mauricio@fauth.dev Date: 2024-02-23 (Fri, 02 February 2024) -03:00
Changed paths: M phpstan-baseline.neon M src/Template.php
Log Message: ----------- Remove trigger_error from Template class
This will remove the error:
Error while working with template cache: Unable to create the cache directory
This does not fix the cache issue, but removes the warning.
The current behavior is to disable the cache when there's an issue with it. However this has bad performance.
The issue is that sometimes Twig generates a different cache key than the warmed up one and tries to write a new cache, but that's not the desired behavior.
Signed-off-by: Maurício Meneghini Fauth mauricio@fauth.dev
Commit: c07d04a8c8df0fe87083bcd6a68ae545355802bf https://github.com/phpmyadmin/phpmyadmin/commit/c07d04a8c8df0fe87083bcd6a68a... Author: Maurício Meneghini Fauth mauricio@fauth.dev Date: 2024-02-24 (Sat, 02 February 2024) -03:00
Changed paths: M phpstan-baseline.neon M src/Template.php
Log Message: ----------- Merge pull request #19008 from MauricioFauth/template-cache-trigger-error-removal
Remove trigger_error from Template class