mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
ComposerUpdate
This commit is contained in:
parent
d0cf1d390e
commit
833d94635d
3
.gitignore
vendored
3
.gitignore
vendored
@ -5,4 +5,5 @@
|
|||||||
runtime
|
runtime
|
||||||
composer.lock
|
composer.lock
|
||||||
public/upload
|
public/upload
|
||||||
/nbproject/private/
|
/nbproject/
|
||||||
|
/safefile/
|
||||||
|
10
composer.lock
generated
10
composer.lock
generated
@ -74,16 +74,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "league/flysystem",
|
"name": "league/flysystem",
|
||||||
"version": "1.0.62",
|
"version": "1.0.63",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/thephpleague/flysystem.git",
|
"url": "https://github.com/thephpleague/flysystem.git",
|
||||||
"reference": "14dd5d7dff5fbc29ca9a2a53ff109760e40d91a0"
|
"reference": "8132daec326565036bc8e8d1876f77ec183a7bd6"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/thephpleague/flysystem/zipball/14dd5d7dff5fbc29ca9a2a53ff109760e40d91a0",
|
"url": "https://api.github.com/repos/thephpleague/flysystem/zipball/8132daec326565036bc8e8d1876f77ec183a7bd6",
|
||||||
"reference": "14dd5d7dff5fbc29ca9a2a53ff109760e40d91a0",
|
"reference": "8132daec326565036bc8e8d1876f77ec183a7bd6",
|
||||||
"shasum": "",
|
"shasum": "",
|
||||||
"mirrors": [
|
"mirrors": [
|
||||||
{
|
{
|
||||||
@ -160,7 +160,7 @@
|
|||||||
"sftp",
|
"sftp",
|
||||||
"storage"
|
"storage"
|
||||||
],
|
],
|
||||||
"time": "2019-12-29T14:46:55+00:00"
|
"time": "2020-01-04T16:30:31+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "league/flysystem-cached-adapter",
|
"name": "league/flysystem-cached-adapter",
|
||||||
|
4
vendor/composer/autoload_classmap.php
vendored
4
vendor/composer/autoload_classmap.php
vendored
@ -55,15 +55,19 @@ return array(
|
|||||||
'League\\Flysystem\\Cached\\Storage\\Stash' => $vendorDir . '/league/flysystem-cached-adapter/src/Storage/Stash.php',
|
'League\\Flysystem\\Cached\\Storage\\Stash' => $vendorDir . '/league/flysystem-cached-adapter/src/Storage/Stash.php',
|
||||||
'League\\Flysystem\\Config' => $vendorDir . '/league/flysystem/src/Config.php',
|
'League\\Flysystem\\Config' => $vendorDir . '/league/flysystem/src/Config.php',
|
||||||
'League\\Flysystem\\ConfigAwareTrait' => $vendorDir . '/league/flysystem/src/ConfigAwareTrait.php',
|
'League\\Flysystem\\ConfigAwareTrait' => $vendorDir . '/league/flysystem/src/ConfigAwareTrait.php',
|
||||||
|
'League\\Flysystem\\ConnectionErrorException' => $vendorDir . '/league/flysystem/src/ConnectionErrorException.php',
|
||||||
|
'League\\Flysystem\\ConnectionRuntimeException' => $vendorDir . '/league/flysystem/src/ConnectionRuntimeException.php',
|
||||||
'League\\Flysystem\\Directory' => $vendorDir . '/league/flysystem/src/Directory.php',
|
'League\\Flysystem\\Directory' => $vendorDir . '/league/flysystem/src/Directory.php',
|
||||||
'League\\Flysystem\\Exception' => $vendorDir . '/league/flysystem/src/Exception.php',
|
'League\\Flysystem\\Exception' => $vendorDir . '/league/flysystem/src/Exception.php',
|
||||||
'League\\Flysystem\\File' => $vendorDir . '/league/flysystem/src/File.php',
|
'League\\Flysystem\\File' => $vendorDir . '/league/flysystem/src/File.php',
|
||||||
'League\\Flysystem\\FileExistsException' => $vendorDir . '/league/flysystem/src/FileExistsException.php',
|
'League\\Flysystem\\FileExistsException' => $vendorDir . '/league/flysystem/src/FileExistsException.php',
|
||||||
'League\\Flysystem\\FileNotFoundException' => $vendorDir . '/league/flysystem/src/FileNotFoundException.php',
|
'League\\Flysystem\\FileNotFoundException' => $vendorDir . '/league/flysystem/src/FileNotFoundException.php',
|
||||||
'League\\Flysystem\\Filesystem' => $vendorDir . '/league/flysystem/src/Filesystem.php',
|
'League\\Flysystem\\Filesystem' => $vendorDir . '/league/flysystem/src/Filesystem.php',
|
||||||
|
'League\\Flysystem\\FilesystemException' => $vendorDir . '/league/flysystem/src/FilesystemException.php',
|
||||||
'League\\Flysystem\\FilesystemInterface' => $vendorDir . '/league/flysystem/src/FilesystemInterface.php',
|
'League\\Flysystem\\FilesystemInterface' => $vendorDir . '/league/flysystem/src/FilesystemInterface.php',
|
||||||
'League\\Flysystem\\FilesystemNotFoundException' => $vendorDir . '/league/flysystem/src/FilesystemNotFoundException.php',
|
'League\\Flysystem\\FilesystemNotFoundException' => $vendorDir . '/league/flysystem/src/FilesystemNotFoundException.php',
|
||||||
'League\\Flysystem\\Handler' => $vendorDir . '/league/flysystem/src/Handler.php',
|
'League\\Flysystem\\Handler' => $vendorDir . '/league/flysystem/src/Handler.php',
|
||||||
|
'League\\Flysystem\\InvalidRootException' => $vendorDir . '/league/flysystem/src/InvalidRootException.php',
|
||||||
'League\\Flysystem\\MountManager' => $vendorDir . '/league/flysystem/src/MountManager.php',
|
'League\\Flysystem\\MountManager' => $vendorDir . '/league/flysystem/src/MountManager.php',
|
||||||
'League\\Flysystem\\NotSupportedException' => $vendorDir . '/league/flysystem/src/NotSupportedException.php',
|
'League\\Flysystem\\NotSupportedException' => $vendorDir . '/league/flysystem/src/NotSupportedException.php',
|
||||||
'League\\Flysystem\\PluginInterface' => $vendorDir . '/league/flysystem/src/PluginInterface.php',
|
'League\\Flysystem\\PluginInterface' => $vendorDir . '/league/flysystem/src/PluginInterface.php',
|
||||||
|
4
vendor/composer/autoload_static.php
vendored
4
vendor/composer/autoload_static.php
vendored
@ -188,15 +188,19 @@ class ComposerStaticInit2b1316f37dd8fe5c4c25969e0b842e8e
|
|||||||
'League\\Flysystem\\Cached\\Storage\\Stash' => __DIR__ . '/..' . '/league/flysystem-cached-adapter/src/Storage/Stash.php',
|
'League\\Flysystem\\Cached\\Storage\\Stash' => __DIR__ . '/..' . '/league/flysystem-cached-adapter/src/Storage/Stash.php',
|
||||||
'League\\Flysystem\\Config' => __DIR__ . '/..' . '/league/flysystem/src/Config.php',
|
'League\\Flysystem\\Config' => __DIR__ . '/..' . '/league/flysystem/src/Config.php',
|
||||||
'League\\Flysystem\\ConfigAwareTrait' => __DIR__ . '/..' . '/league/flysystem/src/ConfigAwareTrait.php',
|
'League\\Flysystem\\ConfigAwareTrait' => __DIR__ . '/..' . '/league/flysystem/src/ConfigAwareTrait.php',
|
||||||
|
'League\\Flysystem\\ConnectionErrorException' => __DIR__ . '/..' . '/league/flysystem/src/ConnectionErrorException.php',
|
||||||
|
'League\\Flysystem\\ConnectionRuntimeException' => __DIR__ . '/..' . '/league/flysystem/src/ConnectionRuntimeException.php',
|
||||||
'League\\Flysystem\\Directory' => __DIR__ . '/..' . '/league/flysystem/src/Directory.php',
|
'League\\Flysystem\\Directory' => __DIR__ . '/..' . '/league/flysystem/src/Directory.php',
|
||||||
'League\\Flysystem\\Exception' => __DIR__ . '/..' . '/league/flysystem/src/Exception.php',
|
'League\\Flysystem\\Exception' => __DIR__ . '/..' . '/league/flysystem/src/Exception.php',
|
||||||
'League\\Flysystem\\File' => __DIR__ . '/..' . '/league/flysystem/src/File.php',
|
'League\\Flysystem\\File' => __DIR__ . '/..' . '/league/flysystem/src/File.php',
|
||||||
'League\\Flysystem\\FileExistsException' => __DIR__ . '/..' . '/league/flysystem/src/FileExistsException.php',
|
'League\\Flysystem\\FileExistsException' => __DIR__ . '/..' . '/league/flysystem/src/FileExistsException.php',
|
||||||
'League\\Flysystem\\FileNotFoundException' => __DIR__ . '/..' . '/league/flysystem/src/FileNotFoundException.php',
|
'League\\Flysystem\\FileNotFoundException' => __DIR__ . '/..' . '/league/flysystem/src/FileNotFoundException.php',
|
||||||
'League\\Flysystem\\Filesystem' => __DIR__ . '/..' . '/league/flysystem/src/Filesystem.php',
|
'League\\Flysystem\\Filesystem' => __DIR__ . '/..' . '/league/flysystem/src/Filesystem.php',
|
||||||
|
'League\\Flysystem\\FilesystemException' => __DIR__ . '/..' . '/league/flysystem/src/FilesystemException.php',
|
||||||
'League\\Flysystem\\FilesystemInterface' => __DIR__ . '/..' . '/league/flysystem/src/FilesystemInterface.php',
|
'League\\Flysystem\\FilesystemInterface' => __DIR__ . '/..' . '/league/flysystem/src/FilesystemInterface.php',
|
||||||
'League\\Flysystem\\FilesystemNotFoundException' => __DIR__ . '/..' . '/league/flysystem/src/FilesystemNotFoundException.php',
|
'League\\Flysystem\\FilesystemNotFoundException' => __DIR__ . '/..' . '/league/flysystem/src/FilesystemNotFoundException.php',
|
||||||
'League\\Flysystem\\Handler' => __DIR__ . '/..' . '/league/flysystem/src/Handler.php',
|
'League\\Flysystem\\Handler' => __DIR__ . '/..' . '/league/flysystem/src/Handler.php',
|
||||||
|
'League\\Flysystem\\InvalidRootException' => __DIR__ . '/..' . '/league/flysystem/src/InvalidRootException.php',
|
||||||
'League\\Flysystem\\MountManager' => __DIR__ . '/..' . '/league/flysystem/src/MountManager.php',
|
'League\\Flysystem\\MountManager' => __DIR__ . '/..' . '/league/flysystem/src/MountManager.php',
|
||||||
'League\\Flysystem\\NotSupportedException' => __DIR__ . '/..' . '/league/flysystem/src/NotSupportedException.php',
|
'League\\Flysystem\\NotSupportedException' => __DIR__ . '/..' . '/league/flysystem/src/NotSupportedException.php',
|
||||||
'League\\Flysystem\\PluginInterface' => __DIR__ . '/..' . '/league/flysystem/src/PluginInterface.php',
|
'League\\Flysystem\\PluginInterface' => __DIR__ . '/..' . '/league/flysystem/src/PluginInterface.php',
|
||||||
|
12
vendor/composer/installed.json
vendored
12
vendor/composer/installed.json
vendored
@ -69,17 +69,17 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "league/flysystem",
|
"name": "league/flysystem",
|
||||||
"version": "1.0.62",
|
"version": "1.0.63",
|
||||||
"version_normalized": "1.0.62.0",
|
"version_normalized": "1.0.63.0",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/thephpleague/flysystem.git",
|
"url": "https://github.com/thephpleague/flysystem.git",
|
||||||
"reference": "14dd5d7dff5fbc29ca9a2a53ff109760e40d91a0"
|
"reference": "8132daec326565036bc8e8d1876f77ec183a7bd6"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/thephpleague/flysystem/zipball/14dd5d7dff5fbc29ca9a2a53ff109760e40d91a0",
|
"url": "https://api.github.com/repos/thephpleague/flysystem/zipball/8132daec326565036bc8e8d1876f77ec183a7bd6",
|
||||||
"reference": "14dd5d7dff5fbc29ca9a2a53ff109760e40d91a0",
|
"reference": "8132daec326565036bc8e8d1876f77ec183a7bd6",
|
||||||
"shasum": "",
|
"shasum": "",
|
||||||
"mirrors": [
|
"mirrors": [
|
||||||
{
|
{
|
||||||
@ -115,7 +115,7 @@
|
|||||||
"spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
|
"spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
|
||||||
"srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
|
"srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
|
||||||
},
|
},
|
||||||
"time": "2019-12-29T14:46:55+00:00",
|
"time": "2020-01-04T16:30:31+00:00",
|
||||||
"type": "library",
|
"type": "library",
|
||||||
"extra": {
|
"extra": {
|
||||||
"branch-alias": {
|
"branch-alias": {
|
||||||
|
@ -557,6 +557,10 @@ abstract class AbstractFtpAdapter extends AbstractAdapter
|
|||||||
*/
|
*/
|
||||||
protected function normalizePermissions($permissions)
|
protected function normalizePermissions($permissions)
|
||||||
{
|
{
|
||||||
|
if (is_numeric($permissions)) {
|
||||||
|
return $permissions & 0777;
|
||||||
|
}
|
||||||
|
|
||||||
// remove the type identifier
|
// remove the type identifier
|
||||||
$permissions = substr($permissions, 1);
|
$permissions = substr($permissions, 1);
|
||||||
|
|
||||||
|
22
vendor/league/flysystem/src/Adapter/Ftp.php
vendored
22
vendor/league/flysystem/src/Adapter/Ftp.php
vendored
@ -6,9 +6,11 @@ use ErrorException;
|
|||||||
use League\Flysystem\Adapter\Polyfill\StreamedCopyTrait;
|
use League\Flysystem\Adapter\Polyfill\StreamedCopyTrait;
|
||||||
use League\Flysystem\AdapterInterface;
|
use League\Flysystem\AdapterInterface;
|
||||||
use League\Flysystem\Config;
|
use League\Flysystem\Config;
|
||||||
|
use League\Flysystem\ConnectionErrorException;
|
||||||
|
use League\Flysystem\ConnectionRuntimeException;
|
||||||
|
use League\Flysystem\InvalidRootException;
|
||||||
use League\Flysystem\Util;
|
use League\Flysystem\Util;
|
||||||
use League\Flysystem\Util\MimeType;
|
use League\Flysystem\Util\MimeType;
|
||||||
use RuntimeException;
|
|
||||||
|
|
||||||
class Ftp extends AbstractFtpAdapter
|
class Ftp extends AbstractFtpAdapter
|
||||||
{
|
{
|
||||||
@ -135,7 +137,7 @@ class Ftp extends AbstractFtpAdapter
|
|||||||
}
|
}
|
||||||
|
|
||||||
if ( ! $this->connection) {
|
if ( ! $this->connection) {
|
||||||
throw new RuntimeException('Could not connect to host: ' . $this->getHost() . ', port:' . $this->getPort());
|
throw new ConnectionRuntimeException('Could not connect to host: ' . $this->getHost() . ', port:' . $this->getPort());
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->login();
|
$this->login();
|
||||||
@ -153,7 +155,7 @@ class Ftp extends AbstractFtpAdapter
|
|||||||
if ($this->utf8) {
|
if ($this->utf8) {
|
||||||
$response = ftp_raw($this->connection, "OPTS UTF8 ON");
|
$response = ftp_raw($this->connection, "OPTS UTF8 ON");
|
||||||
if (substr($response[0], 0, 3) !== '200') {
|
if (substr($response[0], 0, 3) !== '200') {
|
||||||
throw new RuntimeException(
|
throw new ConnectionRuntimeException(
|
||||||
'Could not set UTF-8 mode for connection: ' . $this->getHost() . '::' . $this->getPort()
|
'Could not set UTF-8 mode for connection: ' . $this->getHost() . '::' . $this->getPort()
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@ -163,7 +165,7 @@ class Ftp extends AbstractFtpAdapter
|
|||||||
/**
|
/**
|
||||||
* Set the connections to passive mode.
|
* Set the connections to passive mode.
|
||||||
*
|
*
|
||||||
* @throws RuntimeException
|
* @throws ConnectionRuntimeException
|
||||||
*/
|
*/
|
||||||
protected function setConnectionPassiveMode()
|
protected function setConnectionPassiveMode()
|
||||||
{
|
{
|
||||||
@ -172,7 +174,7 @@ class Ftp extends AbstractFtpAdapter
|
|||||||
}
|
}
|
||||||
|
|
||||||
if ( ! ftp_pasv($this->connection, $this->passive)) {
|
if ( ! ftp_pasv($this->connection, $this->passive)) {
|
||||||
throw new RuntimeException(
|
throw new ConnectionRuntimeException(
|
||||||
'Could not set passive mode for connection: ' . $this->getHost() . '::' . $this->getPort()
|
'Could not set passive mode for connection: ' . $this->getHost() . '::' . $this->getPort()
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@ -187,7 +189,7 @@ class Ftp extends AbstractFtpAdapter
|
|||||||
$connection = $this->connection;
|
$connection = $this->connection;
|
||||||
|
|
||||||
if ($root && ! ftp_chdir($connection, $root)) {
|
if ($root && ! ftp_chdir($connection, $root)) {
|
||||||
throw new RuntimeException('Root is invalid or does not exist: ' . $this->getRoot());
|
throw new InvalidRootException('Root is invalid or does not exist: ' . $this->getRoot());
|
||||||
}
|
}
|
||||||
|
|
||||||
// Store absolute path for further reference.
|
// Store absolute path for further reference.
|
||||||
@ -200,7 +202,7 @@ class Ftp extends AbstractFtpAdapter
|
|||||||
/**
|
/**
|
||||||
* Login.
|
* Login.
|
||||||
*
|
*
|
||||||
* @throws RuntimeException
|
* @throws ConnectionRuntimeException
|
||||||
*/
|
*/
|
||||||
protected function login()
|
protected function login()
|
||||||
{
|
{
|
||||||
@ -215,7 +217,7 @@ class Ftp extends AbstractFtpAdapter
|
|||||||
|
|
||||||
if ( ! $isLoggedIn) {
|
if ( ! $isLoggedIn) {
|
||||||
$this->disconnect();
|
$this->disconnect();
|
||||||
throw new RuntimeException(
|
throw new ConnectionRuntimeException(
|
||||||
'Could not login with connection: ' . $this->getHost() . '::' . $this->getPort(
|
'Could not login with connection: ' . $this->getHost() . '::' . $this->getPort(
|
||||||
) . ', username: ' . $this->getUsername()
|
) . ', username: ' . $this->getUsername()
|
||||||
);
|
);
|
||||||
@ -526,7 +528,7 @@ class Ftp extends AbstractFtpAdapter
|
|||||||
*
|
*
|
||||||
* @return bool
|
* @return bool
|
||||||
*
|
*
|
||||||
* @throws ErrorException
|
* @throws ConnectionErrorException
|
||||||
*/
|
*/
|
||||||
public function isConnected()
|
public function isConnected()
|
||||||
{
|
{
|
||||||
@ -534,7 +536,7 @@ class Ftp extends AbstractFtpAdapter
|
|||||||
return is_resource($this->connection) && ftp_rawlist($this->connection, $this->getRoot()) !== false;
|
return is_resource($this->connection) && ftp_rawlist($this->connection, $this->getRoot()) !== false;
|
||||||
} catch (ErrorException $e) {
|
} catch (ErrorException $e) {
|
||||||
if (strpos($e->getMessage(), 'ftp_rawlist') === false) {
|
if (strpos($e->getMessage(), 'ftp_rawlist') === false) {
|
||||||
throw $e;
|
throw new ConnectionErrorException($e->getMessage());
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
|
9
vendor/league/flysystem/src/ConnectionErrorException.php
vendored
Normal file
9
vendor/league/flysystem/src/ConnectionErrorException.php
vendored
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace League\Flysystem;
|
||||||
|
|
||||||
|
use ErrorException;
|
||||||
|
|
||||||
|
class ConnectionErrorException extends ErrorException implements FilesystemException
|
||||||
|
{
|
||||||
|
}
|
9
vendor/league/flysystem/src/ConnectionRuntimeException.php
vendored
Normal file
9
vendor/league/flysystem/src/ConnectionRuntimeException.php
vendored
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace League\Flysystem;
|
||||||
|
|
||||||
|
use RuntimeException;
|
||||||
|
|
||||||
|
class ConnectionRuntimeException extends RuntimeException implements FilesystemException
|
||||||
|
{
|
||||||
|
}
|
2
vendor/league/flysystem/src/Exception.php
vendored
2
vendor/league/flysystem/src/Exception.php
vendored
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
namespace League\Flysystem;
|
namespace League\Flysystem;
|
||||||
|
|
||||||
class Exception extends \Exception
|
class Exception extends \Exception implements FilesystemException
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
}
|
}
|
||||||
|
7
vendor/league/flysystem/src/FilesystemException.php
vendored
Normal file
7
vendor/league/flysystem/src/FilesystemException.php
vendored
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace League\Flysystem;
|
||||||
|
|
||||||
|
interface FilesystemException
|
||||||
|
{
|
||||||
|
}
|
@ -7,6 +7,6 @@ use LogicException;
|
|||||||
/**
|
/**
|
||||||
* Thrown when the MountManager cannot find a filesystem.
|
* Thrown when the MountManager cannot find a filesystem.
|
||||||
*/
|
*/
|
||||||
class FilesystemNotFoundException extends LogicException
|
class FilesystemNotFoundException extends LogicException implements FilesystemException
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
9
vendor/league/flysystem/src/InvalidRootException.php
vendored
Normal file
9
vendor/league/flysystem/src/InvalidRootException.php
vendored
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace League\Flysystem;
|
||||||
|
|
||||||
|
use RuntimeException;
|
||||||
|
|
||||||
|
class InvalidRootException extends RuntimeException implements FilesystemException
|
||||||
|
{
|
||||||
|
}
|
@ -5,7 +5,7 @@ namespace League\Flysystem;
|
|||||||
use RuntimeException;
|
use RuntimeException;
|
||||||
use SplFileInfo;
|
use SplFileInfo;
|
||||||
|
|
||||||
class NotSupportedException extends RuntimeException
|
class NotSupportedException extends RuntimeException implements FilesystemException
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Create a new exception for a link.
|
* Create a new exception for a link.
|
||||||
|
@ -4,7 +4,7 @@ namespace League\Flysystem;
|
|||||||
|
|
||||||
use LogicException;
|
use LogicException;
|
||||||
|
|
||||||
class RootViolationException extends LogicException
|
class RootViolationException extends LogicException implements FilesystemException
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
}
|
}
|
||||||
|
2
vendor/services.php
vendored
2
vendor/services.php
vendored
@ -1,5 +1,5 @@
|
|||||||
<?php
|
<?php
|
||||||
// This file is automatically generated at:2020-01-04 17:03:01
|
// This file is automatically generated at:2020-01-06 11:28:14
|
||||||
declare (strict_types = 1);
|
declare (strict_types = 1);
|
||||||
return array (
|
return array (
|
||||||
0 => 'think\\app\\Service',
|
0 => 'think\\app\\Service',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user