summaryrefslogtreecommitdiff
path: root/www/wiki/tests/phan/stubs/memcached.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/tests/phan/stubs/memcached.php')
-rw-r--r--www/wiki/tests/phan/stubs/memcached.php16
1 files changed, 16 insertions, 0 deletions
diff --git a/www/wiki/tests/phan/stubs/memcached.php b/www/wiki/tests/phan/stubs/memcached.php
new file mode 100644
index 00000000..0f8859d2
--- /dev/null
+++ b/www/wiki/tests/phan/stubs/memcached.php
@@ -0,0 +1,16 @@
+<?php
+
+/**
+ * The phpstorm stubs package includes the Memcached class with two parameters and docs saying
+ * that they are optional. Phan can not detect this and thus throws an error for a usage with
+ * no params. So we have this small stub just for the constructor to allow no params.
+ * @see https://secure.php.net/manual/en/memcached.construct.php
+ * phpcs:ignoreFile
+ */
+
+class Memcached {
+
+ public function __construct() {
+ }
+
+}