diff --git a/src/AgentDetector.php b/src/AgentDetector.php index d4ce42d..b52d6d4 100644 --- a/src/AgentDetector.php +++ b/src/AgentDetector.php @@ -34,10 +34,6 @@ public static function isAgent() : bool } } - if (file_exists('/opt/.devin')) { - return true; - } - - return false; + return file_exists('/opt/.devin'); } }