Diff
Currently, when running the coding-style level, you will get changes like this :
--- Original
+++ New
@@ -4,6 +4,8 @@
namespace ...;
+use Throwable;
@@ -280,7 +282,7 @@
}
return new Response(...);
- } catch (\Throwable $throwable) {
+ } catch (Throwable $throwable) {
It would be nice to have an option to disable this.
Diff
Currently, when running the coding-style level, you will get changes like this :
It would be nice to have an option to disable this.