From 9a696ef6466182ec84231be82fe2b15c5f528611 Mon Sep 17 00:00:00 2001 From: Wouter Wolters <typo3@wouterwolters.nl> Date: Wed, 15 Jun 2016 15:33:58 +0200 Subject: [PATCH] [TASK] Fix all typos liftime -> lifetime Resolves: #76643 Releases: master Change-Id: I74660cbf30a77c84e911f133f4e17543b87c2cf9 Reviewed-on: https://review.typo3.org/48587 Reviewed-by: Andreas Fernandez <typo3@scripting-base.de> Tested-by: Andreas Fernandez <typo3@scripting-base.de> Reviewed-by: Morton Jonuschat <m.jonuschat@mojocode.de> Tested-by: Morton Jonuschat <m.jonuschat@mojocode.de> --- typo3/sysext/core/Classes/Cache/Backend/AbstractBackend.php | 2 +- typo3/sysext/core/Classes/Cache/Backend/ApcBackend.php | 2 +- typo3/sysext/core/Classes/Cache/Backend/ApcuBackend.php | 2 +- typo3/sysext/core/Classes/Cache/Backend/PdoBackend.php | 2 +- .../core/Classes/Cache/Backend/TransientMemoryBackend.php | 2 +- .../sysext/core/Classes/Cache/Backend/Typo3DatabaseBackend.php | 2 +- typo3/sysext/core/Classes/Cache/Backend/WincacheBackend.php | 2 +- typo3/sysext/core/Classes/Cache/Backend/XcacheBackend.php | 2 +- typo3/sysext/core/Classes/Cache/Frontend/FrontendInterface.php | 2 +- typo3/sysext/core/Classes/Cache/Frontend/PhpFrontend.php | 2 +- typo3/sysext/core/Classes/Cache/Frontend/StringFrontend.php | 2 +- typo3/sysext/core/Classes/Cache/Frontend/VariableFrontend.php | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/typo3/sysext/core/Classes/Cache/Backend/AbstractBackend.php b/typo3/sysext/core/Classes/Cache/Backend/AbstractBackend.php index 99dc50bf06f7..cd459a118807 100644 --- a/typo3/sysext/core/Classes/Cache/Backend/AbstractBackend.php +++ b/typo3/sysext/core/Classes/Cache/Backend/AbstractBackend.php @@ -93,7 +93,7 @@ abstract class AbstractBackend implements \TYPO3\CMS\Core\Cache\Backend\BackendI /** * Sets the default lifetime for this cache backend * - * @param int $defaultLifetime Default lifetime of this cache backend in seconds. If NULL is specified, the default lifetime is used. "0" means unlimited liftime. + * @param int $defaultLifetime Default lifetime of this cache backend in seconds. If NULL is specified, the default lifetime is used. "0" means unlimited lifetime. * @return void * @throws \InvalidArgumentException * @api diff --git a/typo3/sysext/core/Classes/Cache/Backend/ApcBackend.php b/typo3/sysext/core/Classes/Cache/Backend/ApcBackend.php index 4442ca453efe..e2a42b7c1854 100644 --- a/typo3/sysext/core/Classes/Cache/Backend/ApcBackend.php +++ b/typo3/sysext/core/Classes/Cache/Backend/ApcBackend.php @@ -125,7 +125,7 @@ class ApcBackend extends \TYPO3\CMS\Core\Cache\Backend\AbstractBackend implement * @param string $entryIdentifier An identifier for this specific cache entry * @param string $data The data to be stored * @param array $tags Tags to associate with this cache entry - * @param int $lifetime Lifetime of this cache entry in seconds. If NULL is specified, the default lifetime is used. "0" means unlimited liftime. + * @param int $lifetime Lifetime of this cache entry in seconds. If NULL is specified, the default lifetime is used. "0" means unlimited lifetime. * @return void * @throws \TYPO3\CMS\Core\Cache\Exception if no cache frontend has been set. * @throws \TYPO3\CMS\Core\Cache\Exception\InvalidDataException if $data is not a string diff --git a/typo3/sysext/core/Classes/Cache/Backend/ApcuBackend.php b/typo3/sysext/core/Classes/Cache/Backend/ApcuBackend.php index 30a19720e9f5..c852e1b65ebc 100644 --- a/typo3/sysext/core/Classes/Cache/Backend/ApcuBackend.php +++ b/typo3/sysext/core/Classes/Cache/Backend/ApcuBackend.php @@ -126,7 +126,7 @@ class ApcuBackend extends AbstractBackend implements TaggableBackendInterface * @param string $entryIdentifier An identifier for this specific cache entry * @param string $data The data to be stored * @param array $tags Tags to associate with this cache entry - * @param int $lifetime Lifetime of this cache entry in seconds. If NULL is specified, the default lifetime is used. "0" means unlimited liftime. + * @param int $lifetime Lifetime of this cache entry in seconds. If NULL is specified, the default lifetime is used. "0" means unlimited lifetime. * @return void * @throws Cache\Exception if no cache frontend has been set. * @throws Cache\Exception\InvalidDataException if $data is not a string diff --git a/typo3/sysext/core/Classes/Cache/Backend/PdoBackend.php b/typo3/sysext/core/Classes/Cache/Backend/PdoBackend.php index 2fed47c29b1d..b9a48c6ae968 100644 --- a/typo3/sysext/core/Classes/Cache/Backend/PdoBackend.php +++ b/typo3/sysext/core/Classes/Cache/Backend/PdoBackend.php @@ -97,7 +97,7 @@ class PdoBackend extends \TYPO3\CMS\Core\Cache\Backend\AbstractBackend implement * @param string $entryIdentifier An identifier for this specific cache entry * @param string $data The data to be stored * @param array $tags Tags to associate with this cache entry - * @param int $lifetime Lifetime of this cache entry in seconds. If NULL is specified, the default lifetime is used. "0" means unlimited liftime. + * @param int $lifetime Lifetime of this cache entry in seconds. If NULL is specified, the default lifetime is used. "0" means unlimited lifetime. * @return void * @throws \TYPO3\CMS\Core\Cache\Exception if no cache frontend has been set. * @throws \InvalidArgumentException if the identifier is not valid diff --git a/typo3/sysext/core/Classes/Cache/Backend/TransientMemoryBackend.php b/typo3/sysext/core/Classes/Cache/Backend/TransientMemoryBackend.php index 9c566b8604b4..4f7c44d79c9d 100644 --- a/typo3/sysext/core/Classes/Cache/Backend/TransientMemoryBackend.php +++ b/typo3/sysext/core/Classes/Cache/Backend/TransientMemoryBackend.php @@ -38,7 +38,7 @@ class TransientMemoryBackend extends \TYPO3\CMS\Core\Cache\Backend\AbstractBacke * @param string $entryIdentifier An identifier for this specific cache entry * @param string $data The data to be stored * @param array $tags Tags to associate with this cache entry - * @param int $lifetime Lifetime of this cache entry in seconds. If NULL is specified, the default lifetime is used. "0" means unlimited liftime. + * @param int $lifetime Lifetime of this cache entry in seconds. If NULL is specified, the default lifetime is used. "0" means unlimited lifetime. * @return void * @throws \TYPO3\CMS\Core\Cache\Exception if no cache frontend has been set. * @throws \TYPO3\CMS\Core\Cache\Exception\InvalidDataException diff --git a/typo3/sysext/core/Classes/Cache/Backend/Typo3DatabaseBackend.php b/typo3/sysext/core/Classes/Cache/Backend/Typo3DatabaseBackend.php index eea0ba5f3ca4..ac96b4e06a65 100644 --- a/typo3/sysext/core/Classes/Cache/Backend/Typo3DatabaseBackend.php +++ b/typo3/sysext/core/Classes/Cache/Backend/Typo3DatabaseBackend.php @@ -118,7 +118,7 @@ class Typo3DatabaseBackend extends \TYPO3\CMS\Core\Cache\Backend\AbstractBackend * @param string $entryIdentifier An identifier for this specific cache entry * @param string $data The data to be stored * @param array $tags Tags to associate with this cache entry - * @param int $lifetime Lifetime of this cache entry in seconds. If NULL is specified, the default lifetime is used. "0" means unlimited liftime. + * @param int $lifetime Lifetime of this cache entry in seconds. If NULL is specified, the default lifetime is used. "0" means unlimited lifetime. * @return void * @throws \TYPO3\CMS\Core\Cache\Exception if no cache frontend has been set. * @throws \TYPO3\CMS\Core\Cache\Exception\InvalidDataException if the data to be stored is not a string. diff --git a/typo3/sysext/core/Classes/Cache/Backend/WincacheBackend.php b/typo3/sysext/core/Classes/Cache/Backend/WincacheBackend.php index 627eb6a5590a..52ecbbc579eb 100644 --- a/typo3/sysext/core/Classes/Cache/Backend/WincacheBackend.php +++ b/typo3/sysext/core/Classes/Cache/Backend/WincacheBackend.php @@ -64,7 +64,7 @@ class WincacheBackend extends \TYPO3\CMS\Core\Cache\Backend\AbstractBackend impl * @param string $entryIdentifier An identifier for this specific cache entry * @param string $data The data to be stored * @param array $tags Tags to associate with this cache entry - * @param int $lifetime Lifetime of this cache entry in seconds. If NULL is specified, the default lifetime is used. "0" means unlimited liftime. + * @param int $lifetime Lifetime of this cache entry in seconds. If NULL is specified, the default lifetime is used. "0" means unlimited lifetime. * @return void * @throws \TYPO3\CMS\Core\Cache\Exception if no cache frontend has been set * @throws \InvalidArgumentException if the identifier is not valid diff --git a/typo3/sysext/core/Classes/Cache/Backend/XcacheBackend.php b/typo3/sysext/core/Classes/Cache/Backend/XcacheBackend.php index a158c6dd0621..5e3defcc534b 100644 --- a/typo3/sysext/core/Classes/Cache/Backend/XcacheBackend.php +++ b/typo3/sysext/core/Classes/Cache/Backend/XcacheBackend.php @@ -69,7 +69,7 @@ class XcacheBackend extends AbstractBackend implements TaggableBackendInterface * @param string $entryIdentifier An identifier for this specific cache entry * @param string $data The data to be stored * @param array $tags Tags to associate with this cache entry - * @param int $lifetime Lifetime of this cache entry in seconds. If NULL is specified, the default lifetime is used. "0" means unlimited liftime. + * @param int $lifetime Lifetime of this cache entry in seconds. If NULL is specified, the default lifetime is used. "0" means unlimited lifetime. * @return void * @throws \TYPO3\CMS\Core\Cache\Exception if no cache frontend has been set * @throws \TYPO3\CMS\Core\Cache\Exception\InvalidDataException if $data is not a string diff --git a/typo3/sysext/core/Classes/Cache/Frontend/FrontendInterface.php b/typo3/sysext/core/Classes/Cache/Frontend/FrontendInterface.php index 1a246e0764c3..a1731dc46b81 100644 --- a/typo3/sysext/core/Classes/Cache/Frontend/FrontendInterface.php +++ b/typo3/sysext/core/Classes/Cache/Frontend/FrontendInterface.php @@ -57,7 +57,7 @@ interface FrontendInterface * @param string $entryIdentifier Something which identifies the data - depends on concrete cache * @param mixed $data The data to cache - also depends on the concrete cache implementation * @param array $tags Tags to associate with this cache entry - * @param int $lifetime Lifetime of this cache entry in seconds. If NULL is specified, the default lifetime is used. "0" means unlimited liftime. + * @param int $lifetime Lifetime of this cache entry in seconds. If NULL is specified, the default lifetime is used. "0" means unlimited lifetime. * @return void * @api */ diff --git a/typo3/sysext/core/Classes/Cache/Frontend/PhpFrontend.php b/typo3/sysext/core/Classes/Cache/Frontend/PhpFrontend.php index a48f8a5de67e..2a327b8ae9a4 100644 --- a/typo3/sysext/core/Classes/Cache/Frontend/PhpFrontend.php +++ b/typo3/sysext/core/Classes/Cache/Frontend/PhpFrontend.php @@ -42,7 +42,7 @@ class PhpFrontend extends StringFrontend * @param string $entryIdentifier An identifier used for this cache entry, for example the class name * @param string $sourceCode PHP source code * @param array $tags Tags to associate with this cache entry - * @param int $lifetime Lifetime of this cache entry in seconds. If NULL is specified, the default lifetime is used. "0" means unlimited liftime. + * @param int $lifetime Lifetime of this cache entry in seconds. If NULL is specified, the default lifetime is used. "0" means unlimited lifetime. * @return void * @throws \InvalidArgumentException If $entryIdentifier or $tags is invalid * @throws InvalidDataException If $sourceCode is not a string diff --git a/typo3/sysext/core/Classes/Cache/Frontend/StringFrontend.php b/typo3/sysext/core/Classes/Cache/Frontend/StringFrontend.php index 1f6aeaa4ea0c..3e3f28afbe83 100644 --- a/typo3/sysext/core/Classes/Cache/Frontend/StringFrontend.php +++ b/typo3/sysext/core/Classes/Cache/Frontend/StringFrontend.php @@ -30,7 +30,7 @@ class StringFrontend extends AbstractFrontend * @param string $entryIdentifier An identifier used for this cache entry * @param string $string The variable to cache * @param array $tags Tags to associate with this cache entry - * @param int $lifetime Lifetime of this cache entry in seconds. If NULL is specified, the default lifetime is used. "0" means unlimited liftime. + * @param int $lifetime Lifetime of this cache entry in seconds. If NULL is specified, the default lifetime is used. "0" means unlimited lifetime. * @return void * @throws \InvalidArgumentException if the identifier or tag is not valid * @throws InvalidDataException if the variable to cache is not of type string diff --git a/typo3/sysext/core/Classes/Cache/Frontend/VariableFrontend.php b/typo3/sysext/core/Classes/Cache/Frontend/VariableFrontend.php index 12d1eeeba1e4..bb3f7b6da599 100644 --- a/typo3/sysext/core/Classes/Cache/Frontend/VariableFrontend.php +++ b/typo3/sysext/core/Classes/Cache/Frontend/VariableFrontend.php @@ -28,7 +28,7 @@ class VariableFrontend extends AbstractFrontend * @param string $entryIdentifier An identifier used for this cache entry * @param mixed $variable The variable to cache * @param array $tags Tags to associate with this cache entry - * @param int $lifetime Lifetime of this cache entry in seconds. If NULL is specified, the default lifetime is used. "0" means unlimited liftime. + * @param int $lifetime Lifetime of this cache entry in seconds. If NULL is specified, the default lifetime is used. "0" means unlimited lifetime. * @return void * @throws \InvalidArgumentException if the identifier or tag is not valid * @api -- GitLab