Skip to content
This repository was archived by the owner on Feb 8, 2019. It is now read-only.

Commit 01c0580

Browse files
committed
fix createTable
1 parent dc8c619 commit 01c0580

File tree

1 file changed

+1
-1
lines changed
  • src/VectorNetworkProject/TheMix/provider

1 file changed

+1
-1
lines changed

src/VectorNetworkProject/TheMix/provider/JSON.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public function init(array $data = []): void
4242
*/
4343
public function createTable(array $table = []): void
4444
{
45-
@mkdir($this->path);
45+
@mkdir($this->path, 0755, true);
4646
$config = new Config($this->path . $this->file, Config::JSON, $table);
4747
$config->save();
4848
}

0 commit comments

Comments
 (0)