Mike42\Escpos\PrintConnectors\WindowsPrintConnector::runCopy PHP Метод

runCopy() защищенный Метод

Copy a file. Separated out so that nothing is actually printed during test runs.
protected runCopy ( string $from, string $to ) : boolean
$from string Source file
$to string Destination file
Результат boolean True if copy was successful, false otherwise
    protected function runCopy($from, $to)
    {
        return copy($from, $to);
    }