ok, so only for php 7.4 and 8...

pull/671/head
n0nag0n 10 hours ago
parent 9cc9347e2b
commit b9818ea27b

@ -71,6 +71,10 @@ class AiGenerateInstructionsCommandTest extends TestCase {
}
}
if ($property) {
// only setAccessible if php 8 or php 7.4
if (PHP_VERSION_ID < 80100) {
$property->setAccessible(true);
}
$property->setValue($command, $path);
}
}

Loading…
Cancel
Save