| Author | Dave Jarvis <email> |
|---|---|
| Date | 2026-02-16 00:00:10 GMT-0800 |
| Commit | 35df559fc1b8923f4f6503a29efa2a5977e3e815 |
| Parent | 0e28873 |
| } | ||
| +class VirtualDiffFile extends File { | ||
| + public function __construct( string $name, string $content ) { | ||
| + parent::__construct( | ||
| + $name, | ||
| + '', | ||
| + '100644', | ||
| + 0, | ||
| + strlen( $content ), | ||
| + $content | ||
| + ); | ||
| + } | ||
| +} | ||
| + |
| Delta | 13 lines added, 0 lines removed, 13-line increase |
|---|