This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace PDFMerge; | |
use Symfony\Component\Process\Process; | |
use Symfony\Component\Process\Exception\ProcessFailedException; | |
// new empty array to fill with appendix documents. | |
$doc_array = []; | |
// add to the document array for each appendix item. | |
foreach($documents as $doc) { |