MDL-36111 cache: Fixed up typo's and trivial issues

This commit is contained in:
Sam Hemelryk 2012-11-12 10:36:53 +13:00
parent 8ccaa296fa
commit 758dbdf894
11 changed files with 30 additions and 24 deletions

View file

@ -290,10 +290,10 @@ class cache_definition {
throw new coding_exception('You must provide a mode when creating a cache definition');
}
if (!array_key_exists('component', $definition)) {
throw new coding_exception('You must provide a mode when creating a cache definition');
throw new coding_exception('You must provide a component when creating a cache definition');
}
if (!array_key_exists('area', $definition)) {
throw new coding_exception('You must provide a mode when creating a cache definition');
throw new coding_exception('You must provide an area when creating a cache definition');
}
$mode = (int)$definition['mode'];
$component = (string)$definition['component'];
@ -638,7 +638,7 @@ class cache_definition {
*/
public function get_data_source() {
if (!$this->has_data_source()) {
throw new coding_exception('This cache does not use a datasource.');
throw new coding_exception('This cache does not use a data source.');
}
return forward_static_call(array($this->datasource, 'get_instance_for_cache'), $this);
}

View file

@ -147,7 +147,7 @@ class cachestore_dummy implements cache_store {
* Returns true if this store supports multiple identifiers.
* @return bool
*/
public function supports_multiple_indentifiers() {
public function supports_multiple_identifiers() {
return false;
}

View file

@ -194,8 +194,8 @@ interface cache_loader_with_locking {
*
* Please note that this happens automatically if the cache definition requires locking.
* it is still made a public method so that adhoc caches can use it if they choose.
* However this doesn't guarantee consistent access. It will become the reponsiblity of the calling code to ensure locks
* are acquired, checked, and released.
* However this doesn't guarantee consistent access. It will become the responsibility of the calling code to ensure
* locks are acquired, checked, and released.
*
* @param string|int $key
* @return bool True if the lock could be acquired, false otherwise.
@ -207,8 +207,8 @@ interface cache_loader_with_locking {
*
* Please note that this happens automatically if the cache definition requires locking.
* it is still made a public method so that adhoc caches can use it if they choose.
* However this doesn't guarantee consistent access. It will become the reponsiblity of the calling code to ensure locks
* are acquired, checked, and released.
* However this doesn't guarantee consistent access. It will become the responsibility of the calling code to ensure
* locks are acquired, checked, and released.
*
* @param string|int $key
* @return bool True if this code has the lock, false if there is a lock but this code doesn't have it,
@ -221,8 +221,8 @@ interface cache_loader_with_locking {
*
* Please note that this happens automatically if the cache definition requires locking.
* it is still made a public method so that adhoc caches can use it if they choose.
* However this doesn't guarantee consistent access. It will become the reponsiblity of the calling code to ensure locks
* are acquired, checked, and released.
* However this doesn't guarantee consistent access. It will become the responsibility of the calling code to ensure
* locks are acquired, checked, and released.
*
* @param string|int $key
* @return bool True if the lock has been released, false if there was a problem releasing the lock.
@ -314,7 +314,7 @@ interface cache_store {
*
* @return bool
*/
public function supports_multiple_indentifiers();
public function supports_multiple_identifiers();
/**
* Returns true if this cache store instance promotes data guarantee.

View file

@ -18,7 +18,7 @@
* Cache loaders
*
* This file is part of Moodle's cache API, affectionately called MUC.
* It contains the components that are requried in order to use caching.
* It contains the components that are required in order to use caching.
*
* @package core
* @category cache
@ -795,7 +795,7 @@ class cache implements cache_loader {
*/
protected function parse_key($key) {
// First up if the store supports multiple keys we'll go with that.
if ($this->store->supports_multiple_indentifiers()) {
if ($this->store->supports_multiple_identifiers()) {
$result = $this->definition->generate_multi_key_parts();
$result['key'] = $key;
return $result;