Searched refs:file (Results 1 – 10 of 10) sorted by relevance
/web-bugs/src/Utils/ |
H A D | Cache.php | 74 $file = $this->dir.'/'.$key.'.php'; 76 if (!is_file($file)) { 80 $data = require $file; 98 $file = $this->dir.'/'.$key.'.php'; 100 if (is_file($file)) { 101 $data = require $file; 141 $file = $this->dir.'/'.$key.'.php'; 143 if (is_file($file) && !unlink($file)) {
|
H A D | Uploader.php | 150 protected function isUploadedFile(string $file): bool argument 152 return is_uploaded_file($file); 198 protected function getMediaType(string $file): string argument 212 $type = $finfo->file($file);
|
/web-bugs/src/ |
H A D | Autoloader.php | 172 $file = $baseDir 177 if ($this->requireFile($file)) { 178 return $file; 189 * @param string $file The file to require. 192 protected function requireFile($file) argument 194 if (file_exists($file)) { 195 require_once $file;
|
/web-bugs/tests/Unit/ |
H A D | AutoloaderTest.php | 17 protected function requireFile($file) argument 19 return in_array($file, $this->files);
|
/web-bugs/tests/Unit/Utils/ |
H A D | UploaderTest.php | 17 public function testUpload(string $validExtension, array $file): void argument 19 $_FILES = ['uploaded' => $file];
|
/web-bugs/ |
H A D | .gitignore | 5 # .gitignore file. 10 # Configuration file
|
H A D | composer.lock | 3 "This file locks the dependencies of your project to a known state", 5 "This file is @generated automatically" 276 "phpunit/php-file-iterator": "^2.0.2", 332 "name": "phpunit/php-file-iterator", 336 "url": "https://github.com/sebastianbergmann/php-file-iterator.git", 341 …"url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/69deeb8664f611f15… 374 "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", 380 "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues", 381 "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/2.0.6" 582 "phpunit/php-file-iterator": "^2.0.6",
|
/web-bugs/www/ |
H A D | patch-display.php | 113 $d = new \Horde_Text_Diff('auto', [file($old), file($new)]);
|
/web-bugs/docs/ |
H A D | templates.md | 70 To include a partial template snippet file: 78 the file. To import variables into the included template snippet file: 87 included into the parent file(s).
|
H A D | container.md | 84 // New container initialization with configuration parameters defined in a file.
|
Completed in 14 milliseconds