Merge "Improve logging of exceptions which are not thrown but attached to context"
[lhc/web/wiklou.git] / tests / phan / stubs / memcached.php
1 <?php
2
3 /**
4 * The phpstorm stubs package includes the Memcached class with two parameters and docs saying
5 * that they are optional. Phan can not detect this and thus throws an error for a usage with
6 * no params. So we have this small stub just for the constructor to allow no params.
7 * @see https://secure.php.net/manual/en/memcached.construct.php
8 * @codingStandardsIgnoreFile
9 */
10
11 class Memcached {
12
13 public function __construct() {
14 }
15
16 }