aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Common/Version.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files_external/3rdparty/aws-sdk-php/Guzzle/Common/Version.php')
-rw-r--r--apps/files_external/3rdparty/aws-sdk-php/Guzzle/Common/Version.php29
1 files changed, 0 insertions, 29 deletions
diff --git a/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Common/Version.php b/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Common/Version.php
deleted file mode 100644
index d018c1e1253..00000000000
--- a/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Common/Version.php
+++ /dev/null
@@ -1,29 +0,0 @@
-<?php
-
-namespace Guzzle\Common;
-
-/**
- * Guzzle version information
- */
-class Version
-{
- const VERSION = '3.9.2';
-
- /**
- * @var bool Set this value to true to enable warnings for deprecated functionality use. This should be on in your
- * unit tests, but probably not in production.
- */
- public static $emitWarnings = false;
-
- /**
- * Emit a deprecation warning
- *
- * @param string $message Warning message
- */
- public static function warn($message)
- {
- if (self::$emitWarnings) {
- trigger_error('Deprecation warning: ' . $message, E_USER_DEPRECATED);
- }
- }
-}