(folderPath: string)
| 189 | } |
| 190 | |
| 191 | isLaravelProject(folderPath: string) { |
| 192 | return this.fileExists(path.join(folderPath, 'artisan')) |
| 193 | && this.fileExists(path.join(folderPath, 'composer.json')) |
| 194 | } |
| 195 | |
| 196 | manipulateFile(filePath: string, callback: Function): FileSystem { |
| 197 | let fileContent = this.readFile(filePath) |
no test coverage detected