Skip to content

Instantly share code, notes, and snippets.

@tsh-code
Created December 6, 2023 13:54
Show Gist options
  • Save tsh-code/3a4e2ad3d64629e9ef92fb92fa3bc159 to your computer and use it in GitHub Desktop.
Save tsh-code/3a4e2ad3d64629e9ef92fb92fa3bc159 to your computer and use it in GitHub Desktop.
<?php
class Generator {
// . . .
public function generate(string $filename, array $data, string $fileType): void {
$content = $this->generateContent($data, $fileType);
$this->disposition($filename, $content, $fileType);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment