/var/www/vhosts/nabawater/vendor/codeception/base/src/Codeception/Module
NameSizeModeActions
AMQP.php124840664editdlrm
AngularJS.php41940664editdlrm
Apc.php60690664editdlrm
Asserts.php149330664editdlrm
Cli.php28080664editdlrm
DataFactory.php90570664editdlrm
Db.php308220664editdlrm
Doctrine2.php186720664editdlrm
Facebook.php105020664editdlrm
Filesystem.php79580664editdlrm
FTP.php240030664editdlrm
Laravel5.php352300664editdlrm
Lumen.php161720664editdlrm
Memcache.php52880664editdlrm
MongoDb.php144440664editdlrm
Phalcon.php191200664editdlrm
PhpBrowser.php83030664editdlrm
Queue.php111960664editdlrm
README.md26510664editdlrm
Redis.php209810664editdlrm
REST.php449930664editdlrm
Sequence.php29740664editdlrm
Silex.php38170664editdlrm
SOAP.php149120664editdlrm
Symfony.php218360664editdlrm
WebDriver.php1122960664editdlrm
XMLRPC.php47300664editdlrm
Yii1.php85010664editdlrm
Yii2.php260990664editdlrm
ZendExpressive.php32680664editdlrm
ZF1.php82240664editdlrm
ZF2.php72790664editdlrm
Edit: /var/www/vhosts/nabawater/vendor/codeception/base/src/Codeception/Module/Memcache.php (5288B)
'localhost', 'port' => 11211 ]; /** * Code to run before each test. * * @param TestInterface $test * @throws ModuleConfigException */ public function _before(TestInterface $test) { if (class_exists('\Memcache')) { $this->memcache = new \Memcache; $this->memcache->connect($this->config['host'], $this->config['port']); } elseif (class_exists('\Memcached')) { $this->memcache = new \Memcached; $this->memcache->addServer($this->config['host'], $this->config['port']); } else { throw new ModuleConfigException(__CLASS__, 'Memcache classes not loaded'); } } /** * Code to run after each test. * * @param TestInterface $test */ public function _after(TestInterface $test) { if (empty($this->memcache)) { return; } $this->memcache->flush(); switch (get_class($this->memcache)) { case 'Memcache': $this->memcache->close(); break; case 'Memcached': $this->memcache->quit(); break; } } /** * Grabs value from memcached by key. * * Example: * * ``` php * grabValueFromMemcached('users_count'); * ?> * ``` * * @param $key * @return array|string */ public function grabValueFromMemcached($key) { $value = $this->memcache->get($key); $this->debugSection("Value", $value); return $value; } /** * Checks item in Memcached exists and the same as expected. * * Examples: * * ``` php * seeInMemcached('users_count'); * * // Checks a 'users_count' exists and has the value 200 * $I->seeInMemcached('users_count', 200); * ?> * ``` * * @param $key * @param $value */ public function seeInMemcached($key, $value = null) { $actual = $this->memcache->get($key); $this->debugSection("Value", $actual); if (null === $value) { $this->assertNotFalse($actual, "Cannot find key '$key' in Memcached"); } else { $this->assertEquals($value, $actual, "Cannot find key '$key' in Memcached with the provided value"); } } /** * Checks item in Memcached doesn't exist or is the same as expected. * * Examples: * * ``` php * dontSeeInMemcached('users_count'); * * // Checks a 'users_count' exists does not exist or its value is not the one provided * $I->dontSeeInMemcached('users_count', 200); * ?> * ``` * * @param $key * @param $value */ public function dontSeeInMemcached($key, $value = null) { $actual = $this->memcache->get($key); $this->debugSection("Value", $actual); if (null === $value) { $this->assertFalse($actual, "The key '$key' exists in Memcached"); } else { if (false !== $actual) { $this->assertEquals($value, $actual, "The key '$key' exists in Memcached with the provided value"); } } } /** * Stores an item `$value` with `$key` on the Memcached server. * * @param string $key * @param mixed $value * @param int $expiration */ public function haveInMemcached($key, $value, $expiration = null) { switch (get_class($this->memcache)) { case 'Memcache': $this->assertTrue($this->memcache->set($key, $value, null, $expiration)); break; case 'Memcached': $this->assertTrue($this->memcache->set($key, $value, $expiration)); break; } } /** * Flushes all Memcached data. */ public function clearMemcache() { $this->memcache->flush(); } }