Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/CarnetApp/CarnetNextcloud.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/phpunit/phpunit/src/Framework/Warning.php')
-rw-r--r--vendor/phpunit/phpunit/src/Framework/Warning.php25
1 files changed, 25 insertions, 0 deletions
diff --git a/vendor/phpunit/phpunit/src/Framework/Warning.php b/vendor/phpunit/phpunit/src/Framework/Warning.php
new file mode 100644
index 0000000..70ccf9a
--- /dev/null
+++ b/vendor/phpunit/phpunit/src/Framework/Warning.php
@@ -0,0 +1,25 @@
+<?php
+/*
+ * This file is part of PHPUnit.
+ *
+ * (c) Sebastian Bergmann <sebastian@phpunit.de>
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
+/**
+ * Thrown when there is a warning.
+ */
+class PHPUnit_Framework_Warning extends PHPUnit_Framework_Exception implements PHPUnit_Framework_SelfDescribing
+{
+ /**
+ * Wrapper for getMessage() which is declared as final.
+ *
+ * @return string
+ */
+ public function toString()
+ {
+ return $this->getMessage();
+ }
+}