From b5e530185f0ed0f2a4e0b3d6afc48c2579a24fce Mon Sep 17 00:00:00 2001 From: koller Date: Mon, 24 Aug 2026 07:50:47 +0200 Subject: [PATCH] Enable larastan checkOctaneCompatibility Turns on larastan's OctaneCompatibilityRule in both the default and strict extension, so container misuse inside service provider bindings is caught at analysis time. --- extension-strict.neon | 1 + extension.neon | 1 + 2 files changed, 2 insertions(+) diff --git a/extension-strict.neon b/extension-strict.neon index 227394b..c17cba0 100644 --- a/extension-strict.neon +++ b/extension-strict.neon @@ -5,6 +5,7 @@ includes: parameters: level: 10 + checkOctaneCompatibility: true tmpDir: .phpstan strictRules: dynamicCallOnStaticMethod: false diff --git a/extension.neon b/extension.neon index 52ddec6..67b9817 100644 --- a/extension.neon +++ b/extension.neon @@ -3,6 +3,7 @@ includes: parameters: level: 8 + checkOctaneCompatibility: true tmpDir: .phpstan bootstrapFiles: - bootstrap/eloquent.php