Home
last modified time | relevance | path

Searched refs:uploadsDir (Results 1 – 3 of 3) sorted by relevance

/web-bugs/src/Utils/
H A DComposerScripts.php13 private static $uploadsDir = __DIR__.'/../../uploads'; variable in App\\Utils\\ComposerScripts
47 if (!file_exists(self::$uploadsDir)) {
48 mkdir(self::$uploadsDir, 0777, true);
49 chmod(self::$uploadsDir, 0777);
H A DPatchTracker.php26 private $uploadsDir; variable in App\\Utils\\PatchTracker
49 public function __construct(\PDO $dbh, Uploader $uploader, string $uploadsDir) argument
52 $this->uploadsDir = $uploadsDir;
64 if (!file_exists($this->uploadsDir) && !@mkdir($this->uploadsDir)) {
74 return $this->uploadsDir.'/p'.$bugId.'/'.$name;
/web-bugs/src/Repository/
H A DPatchRepository.php20 private $uploadsDir; variable in App\\Repository\\PatchRepository
25 public function __construct(\PDO $dbh, string $uploadsDir) argument
28 $this->uploadsDir = $uploadsDir;
114 return $this->uploadsDir.'/p'.$bugId.'/'.$name.'/'.'p'.$revision.'.patch.txt';

Completed in 6 milliseconds