deepsourcestatus / test-repository

Directory created with insecure permissions PHP-A1006
Insecure permission 0777 used when creating a directory
22    public function targetDirectoryExists()
23    {
24        if (!file_exists($this->targetDirectory)) {
25            mkdir($this->targetDirectory);26        } elseif (!is_dir($this->targetDirectory)) {
27            // throw new \RuntimeException("Target directory $this->targetDirectory is not a directory");
28        }