@@ -84,7 +84,7 @@ |
||
84 | 84 | { |
85 | 85 | // Simplified example: Load content from a specific file |
86 | 86 | $contentFile = $epubDirectory . '/content.xhtml'; // Adjust this path as needed |
87 | - if (! file_exists($contentFile)) { |
|
87 | + if (!file_exists($contentFile)) { |
|
88 | 88 | throw new Exception("Content file not found: {$contentFile}"); |
89 | 89 | } |
90 | 90 |
@@ -131,7 +131,7 @@ |
||
131 | 131 | { |
132 | 132 | // Simplified example: Load content from a specific file |
133 | 133 | $contentFile = $epubDirectory . '/content.xhtml'; // Adjust this path as needed |
134 | - if (! file_exists($contentFile)) { |
|
134 | + if (!file_exists($contentFile)) { |
|
135 | 135 | throw new Exception("Content file not found: {$contentFile}"); |
136 | 136 | } |
137 | 137 |