![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/ledger.corals.io/vendor/league/flysystem/src/Adapter/Polyfill/ |
<?php namespace League\Flysystem\Adapter\Polyfill; use League\Flysystem\Config; trait StreamedCopyTrait { /** * Copy a file. * * @param string $path * @param string $newpath * * @return bool */ public function copy($path, $newpath) { $response = $this->readStream($path); if ($response === false || ! is_resource($response['stream'])) { return false; } $result = $this->writeStream($newpath, $response['stream'], new Config()); if ($result !== false && is_resource($response['stream'])) { fclose($response['stream']); } return $result !== false; } // Required abstract method /** * @param string $path * * @return resource */ abstract public function readStream($path); /** * @param string $path * @param resource $resource * @param Config $config * * @return resource */ abstract public function writeStream($path, $resource, Config $config); }