We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
No such file or directory
1 parent 7d08de0 commit a97158eCopy full SHA for a97158e
tests/AutoDocControllerTest.php
@@ -23,6 +23,9 @@ public function setUp(): void
23
self::$localDriverFilePath ??= 'documentation.json';
24
self::$documentation ??= $this->getJsonFixture('tmp_data');
25
26
+ if (!is_dir(self::$documentationDirectory)) {
27
+ mkdir(self::$documentationDirectory);
28
+ }
29
file_put_contents(self::$documentationDirectory.self::$localDriverFilePath, json_encode(self::$documentation));
30
31
config(['auto-doc.drivers.local.production_path' => self::$localDriverFilePath]);
0 commit comments